Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 20 lines 499 B view raw
1{ lib, buildPythonPackage, fetchPypi, flask }: 2 3buildPythonPackage rec { 4 pname = "flask-paginate"; 5 version = "0.5.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "ebc896bf6e8d7a414e3efba0bd0770a8f73dcd7023f99e849c64164287e36e9b"; 10 }; 11 12 propagatedBuildInputs = [ flask ]; 13 14 meta = with lib; { 15 homepage = https://github.com/lixxu/flask-paginate; 16 description = "Pagination support for Flask"; 17 license = licenses.bsd3; 18 maintainers = with maintainers; [ ]; 19 }; 20}