21 lines
515 B
Nix
Raw Normal View History

2018-08-14 19:35:28 +02:00
{ lib, buildPythonPackage, fetchPypi, flask, markdown }:
buildPythonPackage rec {
pname = "Flask-API";
2019-12-19 20:31:10 +01:00
version = "2.0";
2018-08-14 19:35:28 +02:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:10 +01:00
sha256 = "6986642e5b25b7def710ca9489ed2b88c94006bfc06eca01c78da7cf447e66e5";
2018-08-14 19:35:28 +02:00
};
propagatedBuildInputs = [ flask markdown ];
meta = with lib; {
homepage = "https://github.com/miracle2k/flask-assets";
2018-08-14 19:35:28 +02:00
description = "Browsable web APIs for Flask";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}