Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 507 B view raw
1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "XStatic-Pygments"; 8 version = "2.7.2.1"; 9 10 src = fetchPypi { 11 inherit version pname; 12 sha256 = "b22b0a59ce17bf06e26508fdd264fff74409ebd9968af87a0a63402fce838dc2"; 13 }; 14 15 # no tests implemented 16 doCheck = false; 17 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 }; 24 25}