pythonPackages.flask-bootstrap: init at 3.3.7.1
This commit is contained in:
parent
28d7d7c2ca
commit
4433f40331
20
pkgs/development/python-modules/flask-bootstrap/default.nix
Normal file
20
pkgs/development/python-modules/flask-bootstrap/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, flask, visitor, dominate }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Flask-Bootstrap";
|
||||
version = "3.3.7.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1j1s2bplaifsnmr8vfxa3czca4rz78xyhrg4chx39xl306afs26b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ flask visitor dominate ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/mbr/flask-bootstrap;
|
||||
description = "Ready-to-use Twitter-bootstrap for use in Flask.";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
@ -5369,6 +5369,8 @@ in {
|
||||
|
||||
flask-babel = callPackage ../development/python-modules/flask-babel { };
|
||||
|
||||
flask-bootstrap = callPackage ../development/python-modules/flask-bootstrap { };
|
||||
|
||||
flask-caching = callPackage ../development/python-modules/flask-caching { };
|
||||
|
||||
flask-common = callPackage ../development/python-modules/flask-common { };
|
||||
|
Loading…
Reference in New Issue
Block a user