1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "xstatic-pygments"; 9 version = "2.9.0.1"; 10 11 src = fetchPypi { 12 pname = "XStatic-Pygments"; 13 inherit version; 14 sha256 = "082c1e9fe606fbbef474f78b6fdb19e9a2efcc7a9b7d94163cf66f7bfae75762"; 15 }; 16 17 # no tests implemented 18 doCheck = false; 19 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 }; 26}