Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / xstatic-pygments / default.nix
blob6d8391dcb8aae7e001179c03fa8f5ebfc1f0d4b2
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "xstatic-pygments";
8   version = "2.9.0.1";
10   src = fetchPypi {
11     pname = "XStatic-Pygments";
12     inherit version;
13     sha256 = "082c1e9fe606fbbef474f78b6fdb19e9a2efcc7a9b7d94163cf66f7bfae75762";
14   };
16   # no tests implemented
17   doCheck = false;
19   meta = with lib;{
20     homepage = "https://pygments.org";
21     description = "pygments packaged static files for python";
22     license = licenses.mit;
23     maintainers = with maintainers; [ makefu ];
24   };