9 buildPythonPackage rec {
10 pname = "flask-paginate";
11 version = "2023.10.24";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "flask-paginate";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-9633YLHMF9S1DLK7ZS4qmCOzslXdHLSgpKoJFNvkXlA=";
23 propagatedBuildInputs = [
31 pythonImportsCheck = [
40 description = "Pagination support for Flask";
41 homepage = "https://github.com/lixxu/flask-paginate";
42 changelog = "https://github.com/lixxu/flask-paginate/releases/tag/v${version}";
43 license = licenses.bsd3;
44 maintainers = with maintainers; [ ];