1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "xstatic-bootbox"; 9 version = "5.5.1.1"; 10 11 src = fetchPypi { 12 pname = "XStatic-Bootbox"; 13 inherit version; 14 sha256 = "4b2120bb33a1d8ada8f9e0532ad99987aa03879b17b08bfdc6b8326d6eb7c205"; 15 }; 16 17 # no tests implemented 18 doCheck = false; 19 20 meta = with lib; { 21 homepage = "http://bootboxjs.com"; 22 description = "Bootboxjs packaged static files for python"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ makefu ]; 25 }; 26}