summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-bootbox/default.nix
blob: ba75ed0b8824941143c4db857bb87fa3a49ce1bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ buildPythonPackage
, lib
, fetchPypi
}:

buildPythonPackage rec {
  pname = "XStatic-Bootbox";
  version = "4.4.0.1";

  src = fetchPypi {
    inherit version pname;
    sha256 = "1g00q38g1k576lxjlwglv4w3fj4z0z8lxlwpc66wyhjglj4r4bwd";
  };

  # no tests implemented
  doCheck = false;

  meta = with lib;{
    homepage = "http://bootboxjs.com";
    description = "Bootboxjs packaged static files for python";
    license = licenses.mit;
    maintainers = with maintainers; [ makefu ];
  };

}