mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
27 lines
542 B
Nix
27 lines
542 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|