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

  src = fetchPypi {
    inherit version pname;
    sha256 = "082c1e9fe606fbbef474f78b6fdb19e9a2efcc7a9b7d94163cf66f7bfae75762";
  };

  # no tests implemented
  doCheck = false;

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

}