Merge pull request #141329 from felixsinger/pkgs/sphinx/update

authored by

Sandro and committed by
GitHub
992ecc02 9e0b3e97

+2 -11
+2 -11
pkgs/development/python-modules/sphinx/default.nix
··· 2 2 , buildPythonPackage 3 3 , pythonOlder 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 # propagatedBuildInputs 7 6 , Babel 8 7 , alabaster ··· 29 28 30 29 buildPythonPackage rec { 31 30 pname = "sphinx"; 32 - version = "4.0.2"; 31 + version = "4.2.0"; 33 32 disabled = pythonOlder "3.5"; 34 33 35 34 src = fetchFromGitHub { 36 35 owner = "sphinx-doc"; 37 36 repo = pname; 38 37 rev = "v${version}"; 39 - sha256 = "sha256-0QdgHFX4r40BDHjpi9R40lXqT4n5ZgrIny+w070LZPE="; 38 + sha256 = "1i38n5bxqiycjwmiv9dl72r3f5ks4zmif30znqg8zilclbx6g16x"; 40 39 }; 41 - 42 - patches = [ 43 - (fetchpatch { 44 - # Fix tests with pygments 2.10 45 - url = "https://github.com/sphinx-doc/sphinx/commit/bde6c8d2effc56dc8b9098abee796167f972c306.patch"; 46 - sha256 = "0d0ddhgrrh7z9ix0f3zrc2gjb4d73f6ffm98zl62fzv5l4fd00lr"; 47 - }) 48 - ]; 49 40 50 41 propagatedBuildInputs = [ 51 42 Babel