depot/third_party/nixpkgs/pkgs/development/python-modules/flask-paginate/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
501 B
Nix

{ lib, buildPythonPackage, fetchPypi, flask }:
buildPythonPackage rec {
pname = "flask-paginate";
version = "0.5.4";
src = fetchPypi {
inherit pname version;
sha256 = "60079a1c4c600cb4d4a9f7c386ea357b5ee02355ae6d6e8b41f769ae3f7af3ad";
};
propagatedBuildInputs = [ flask ];
meta = with lib; {
homepage = "https://github.com/lixxu/flask-paginate";
description = "Pagination support for Flask";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}