1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.flask-silk: init at 0.2

This commit is contained in:
Timo Kaufmann 2018-04-11 18:50:35 +02:00 committed by Matthew Justin Bauer
parent 1cf1b1e0f4
commit 9897e959f3
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, flask
}:
buildPythonPackage rec {
pname = "Flask-Silk";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "1gjzighx4f0w39sq9xvzr1kwb4y7yv9qrgzvli1p89gy16piz8l0";
};
propagatedBuildInputs = [
flask
];
meta = with stdenv.lib; {
description = "Adds silk icons to your Flask application or module, or extension";
license = licenses.bsd3;
maintainers = with maintainers; [ timokau ];
homepage = https://github.com/sublee/flask-silk;
};
}

View file

@ -5582,6 +5582,8 @@ in {
flask_script = callPackage ../development/python-modules/flask-script { };
flask-silk = callPackage ../development/python-modules/flask-silk { };
flask_sqlalchemy = buildPythonPackage rec {
name = "Flask-SQLAlchemy-${version}";
version = "2.1";