summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-bootstrap/default.nix
blob: a1e2c1a4e7b6c8653f023f2ff1bb771cd4de39a8 (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-Bootstrap";
  version = "4.1.3.1";

  src = fetchPypi {
    inherit version pname;
    sha256 = "1800e6bb5fc687604d8a893eee8c7882d800a6f3d6721799016f99a47d1dac0f";
  };

  # no tests implemented
  doCheck = false;

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

}