about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-bootbox/default.nix
blob: 68c81157eb08aae54f9a9c833dbdb95faceae400 (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.3.0.1";

  src = fetchPypi {
    inherit version pname;
    sha256 = "0wks1lsqngn3gvlhzrvaan1zj8w4wr58xi0pfqhrzckbghvvr0gj";
  };

  # 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 ];
  };

}