Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.readme_renderer: 17.2 -> 17.4

(cherry picked from commit 922b0cec828d31799b975c1df103cc05666c56f2)

+5 -5
+5 -5
pkgs/development/python-modules/readme_renderer/default.nix
··· 2 , buildPythonPackage 3 , fetchPypi 4 , pytest 5 , bleach 6 , docutils 7 , pygments ··· 10 11 buildPythonPackage rec { 12 pname = "readme_renderer"; 13 - version = "17.2"; 14 - name = "${pname}-${version}"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "9deab442963a63a71ab494bf581b1c844473995a2357f4b3228a1df1c8cba8da"; 19 }; 20 21 checkInputs = [ pytest ]; 22 23 propagatedBuildInputs = [ 24 - bleach docutils pygments six 25 ]; 26 27 checkPhase = '' ··· 33 homepage = https://github.com/pypa/readme_renderer; 34 license = lib.licenses.asl20; 35 }; 36 - }
··· 2 , buildPythonPackage 3 , fetchPypi 4 , pytest 5 + , CommonMark 6 , bleach 7 , docutils 8 , pygments ··· 11 12 buildPythonPackage rec { 13 pname = "readme_renderer"; 14 + version = "17.4"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + sha256 = "82d68175feec897af2a38fe8590778f14c3be5324cc62e3ce5752a9b1e4b60ab"; 19 }; 20 21 checkInputs = [ pytest ]; 22 23 propagatedBuildInputs = [ 24 + CommonMark bleach docutils pygments six 25 ]; 26 27 checkPhase = '' ··· 33 homepage = https://github.com/pypa/readme_renderer; 34 license = lib.licenses.asl20; 35 }; 36 + }