depot/third_party/nixpkgs/pkgs/development/python-modules/peewee-migrate/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

62 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 ];
};
}