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