pythonPackages.flask-paginate: init at 0.5.1

This commit is contained in:
Silvan Mosberger 2018-08-14 19:35:54 +02:00
parent f40c61cc15
commit 01bbc716e2
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7
2 changed files with 22 additions and 0 deletions

View file

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

View file

@ -5397,6 +5397,8 @@ in {
flask_oauthlib = callPackage ../development/python-modules/flask-oauthlib { };
flask-paginate = callPackage ../development/python-modules/flask-paginate { };
flask_principal = callPackage ../development/python-modules/flask-principal { };
flask-pymongo = callPackage ../development/python-modules/Flask-PyMongo { };