Merge pull request #303545 from r-ryantm/auto-update/python312Packages.flask-paginate

python312Packages.flask-paginate: 2024.3.28 -> 2024.4.12
This commit is contained in:
Fabian Affolter 2024-04-12 12:26:17 +02:00 committed by GitHub
commit 0e53547984
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,15 +1,17 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, flask fetchFromGitHub,
, pytestCheckHook flask,
, pythonOlder pytestCheckHook,
pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "flask-paginate"; pname = "flask-paginate";
version = "2024.3.28"; version = "2024.4.12";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -17,24 +19,18 @@ buildPythonPackage rec {
owner = "lixxu"; owner = "lixxu";
repo = "flask-paginate"; repo = "flask-paginate";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-HqjgmqRH83N+CbTnkkEJnuo+c+n5wLwdsPXyY2i5XRg="; hash = "sha256-YaAgl+iuoXB0eWVzhmNq2UTOpM/tHfDISIb9CyaXiuA=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
flask
];
nativeCheckInputs = [ dependencies = [ flask ];
pytestCheckHook
];
pythonImportsCheck = [ nativeCheckInputs = [ pytestCheckHook ];
"flask_paginate"
];
pytestFlagsArray = [ pythonImportsCheck = [ "flask_paginate" ];
"tests/tests.py"
]; pytestFlagsArray = [ "tests/tests.py" ];
meta = with lib; { meta = with lib; {
description = "Pagination support for Flask"; description = "Pagination support for Flask";