python3Packages.alembic: 1.15.2 -> 1.16.4

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-05 04:34:26 +02:00
parent 6ca4b4658e
commit d58ef1a5ab
@@ -2,34 +2,30 @@
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
setuptools,
# dependencies
importlib-metadata,
importlib-resources,
mako,
sqlalchemy,
typing-extensions,
# tests
pytest7CheckHook,
black,
pytestCheckHook,
pytest-xdist,
python-dateutil,
}:
buildPythonPackage rec {
pname = "alembic";
version = "1.15.2";
version = "1.16.4";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-HHI5G73v/M/jF+77pobLmjwHgAVHiIVBO5XDsmxXqKc=";
hash = "sha256-76tq2g3Q+uLJIGCADgv1wdwmrxWhDgL7S6v/FktHJeI=";
};
build-system = [ setuptools ];
@@ -38,16 +34,13 @@ buildPythonPackage rec {
mako
sqlalchemy
typing-extensions
]
++ lib.optionals (pythonOlder "3.9") [
importlib-resources
importlib-metadata
];
pythonImportsCheck = [ "alembic" ];
nativeCheckInputs = [
pytest7CheckHook
black
pytestCheckHook
pytest-xdist
python-dateutil
];