python312Packages.flask-paginate: refactor

This commit is contained in:
Fabian Affolter 2024-04-12 10:05:43 +02:00
parent ef2d824716
commit 5b950810d7
1 changed files with 7 additions and 2 deletions

View File

@ -4,12 +4,13 @@
, flask
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "flask-paginate";
version = "2024.4.12";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,7 +21,11 @@ buildPythonPackage rec {
hash = "sha256-YaAgl+iuoXB0eWVzhmNq2UTOpM/tHfDISIb9CyaXiuA=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
flask
];