65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
|
|
# build-system
|
|
, poetry-core
|
|
|
|
# runtime
|
|
, click
|
|
, peewee
|
|
|
|
# tests
|
|
, psycopg2
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "peewee-migrate";
|
|
version = "1.12.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "klen";
|
|
repo = "peewee_migrate";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-jxM2cvlDsoiUlVoxdS3wpUKlwMveMraiR431A8kIdgI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/addopts/d' pyproject.toml
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
peewee
|
|
click
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"peewee_migrate"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
psycopg2
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# sqlite3.OperationalError: error in table order after drop column...
|
|
"test_migrator"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple migration engine for Peewee";
|
|
homepage = "https://github.com/klen/peewee_migrate";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|