evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / xstatic-bootbox / default.nix
blob419e051889303db9aefbdb4fee4aade3ec561257
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "xstatic-bootbox";
9   version = "5.5.1.1";
11   src = fetchPypi {
12     pname = "XStatic-Bootbox";
13     inherit version;
14     sha256 = "4b2120bb33a1d8ada8f9e0532ad99987aa03879b17b08bfdc6b8326d6eb7c205";
15   };
17   # no tests implemented
18   doCheck = false;
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   };