Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, docutils 5}: 6 7buildPythonPackage rec { 8 pname = "Pygments"; 9 version = "2.5.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe"; 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}