Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "XStatic-Bootbox"; 8 version = "4.4.0.1"; 9 10 src = fetchPypi { 11 inherit version pname; 12 sha256 = "1g00q38g1k576lxjlwglv4w3fj4z0z8lxlwpc66wyhjglj4r4bwd"; 13 }; 14 15 # no tests implemented 16 doCheck = false; 17 18 meta = with lib;{ 19 homepage = "http://bootboxjs.com"; 20 description = "Bootboxjs packaged static files for python"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ makefu ]; 23 }; 24 25}