about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/xstatic-pygments/default.nix
blob: 6d8391dcb8aae7e001179c03fa8f5ebfc1f0d4b2 (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
26
{ buildPythonPackage
, lib
, fetchPypi
}:

buildPythonPackage rec {
  pname = "xstatic-pygments";
  version = "2.9.0.1";

  src = fetchPypi {
    pname = "XStatic-Pygments";
    inherit version;
    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 ];
  };

}