Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 flask, 6 visitor, 7 dominate, 8}: 9 10buildPythonPackage rec { 11 pname = "flask-bootstrap"; 12 version = "3.3.7.1"; 13 14 src = fetchPypi { 15 pname = "Flask-Bootstrap"; 16 inherit version; 17 sha256 = "1j1s2bplaifsnmr8vfxa3czca4rz78xyhrg4chx39xl306afs26b"; 18 }; 19 20 propagatedBuildInputs = [ 21 flask 22 visitor 23 dominate 24 ]; 25 26 meta = with lib; { 27 homepage = "https://github.com/mbr/flask-bootstrap"; 28 description = "Ready-to-use Twitter-bootstrap for use in Flask"; 29 license = licenses.asl20; 30 maintainers = [ ]; 31 }; 32}