Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 487 B view raw
1{ lib, buildPythonPackage, fetchPypi, flask }: 2 3buildPythonPackage rec { 4 pname = "flask-paginate"; 5 version = "0.5.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "15plwkmi6i7p85q2vgyvmn0l4c2h7pj4mmiziwghyyqbd1rc0dr2"; 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}