Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 540 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, docutils 5}: 6 7buildPythonPackage rec { 8 pname = "Pygments"; 9 version = "2.6.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "647344a061c249a3b74e230c739f434d7ea4d8b1d5f3721bc0f3558049b38f44"; 14 }; 15 16 propagatedBuildInputs = [ docutils ]; 17 18 # Circular dependency with sphinx 19 doCheck = false; 20 21 meta = { 22 homepage = "https://pygments.org/"; 23 description = "A generic syntax highlighter"; 24 license = lib.licenses.bsd2; 25 maintainers = with lib.maintainers; [ ]; 26 }; 27}