My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/flask-bootstrap/default.nix

20 lines
548 B

{ 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; [ ];
};
}