Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 513 B view raw
1{ lib, buildPythonPackage, fetchPypi, flask, markdown }: 2 3buildPythonPackage rec { 4 pname = "Flask-API"; 5 version = "2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "6986642e5b25b7def710ca9489ed2b88c94006bfc06eca01c78da7cf447e66e5"; 10 }; 11 12 propagatedBuildInputs = [ flask markdown ]; 13 14 meta = with lib; { 15 homepage = https://github.com/miracle2k/flask-assets; 16 description = "Browsable web APIs for Flask"; 17 license = licenses.bsd2; 18 maintainers = with maintainers; [ ]; 19 }; 20}