ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / xstatic-pygments / default.nix
blob68fc2339f559b0156a7f962979332425bef56e77
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "XStatic-Pygments";
8   version = "2.9.0.1";
10   src = fetchPypi {
11     inherit version pname;
12     sha256 = "082c1e9fe606fbbef474f78b6fdb19e9a2efcc7a9b7d94163cf66f7bfae75762";
13   };
15   # no tests implemented
16   doCheck = false;
18   meta = with lib;{
19     homepage = "https://pygments.org";
20     description = "pygments packaged static files for python";
21     license = licenses.mit;
22     maintainers = with maintainers; [ makefu ];
23   };