anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / xstatic-pygments / default.nix
blob39c41f74ced7137b5fd59fdae70b2725837ab2de
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "xstatic-pygments";
9   version = "2.9.0.1";
11   src = fetchPypi {
12     pname = "XStatic-Pygments";
13     inherit version;
14     sha256 = "082c1e9fe606fbbef474f78b6fdb19e9a2efcc7a9b7d94163cf66f7bfae75762";
15   };
17   # no tests implemented
18   doCheck = false;
20   meta = with lib; {
21     homepage = "https://pygments.org";
22     description = "pygments packaged static files for python";
23     license = licenses.mit;
24     maintainers = with maintainers; [ makefu ];
25   };