about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xstatic-pygments/default.nix
blob: 8ec9b77860c210c8cc644d84b31f4a3ca7cb2e21 (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 = "1.6.0.1";

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

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

}