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