summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-pygments/default.nix
blob: 956d331e7b8978643c315718523516165ca6bb9f (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-Pygments";
  version = "2.2.0.1";

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

  # no tests implemented
  doCheck = false;

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

}