11 buildPythonPackage rec {
12 pname = "flask-paginate";
13 version = "2024.4.12";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "flask-paginate";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-YaAgl+iuoXB0eWVzhmNq2UTOpM/tHfDISIb9CyaXiuA=";
25 build-system = [ setuptools ];
27 dependencies = [ flask ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "flask_paginate" ];
33 pytestFlagsArray = [ "tests/tests.py" ];
36 description = "Pagination support for Flask";
37 homepage = "https://github.com/lixxu/flask-paginate";
38 changelog = "https://github.com/lixxu/flask-paginate/releases/tag/v${version}";
39 license = licenses.bsd3;