mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
21 lines
506 B
Nix
21 lines
506 B
Nix
{ lib, buildPythonPackage, fetchPypi, flask }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-paginate";
|
|
version = "2021.12.28";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c722a25067d722483e24cde16ed987a822292ca758a213299e445694d2b5b587";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lixxu/flask-paginate";
|
|
description = "Pagination support for Flask";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|