Merge pull request #144059 from r-burns/xdis-uncompyle6

python3Packages.{xdis,uncompyle6}: bump to latest to support python 3.8.12

authored by

Sandro and committed by
GitHub
107b7f5d bd0051cd

+4 -4
+2 -2
pkgs/development/python-modules/uncompyle6/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "uncompyle6"; 15 - version = "3.7.4"; 15 + version = "3.8.0"; 16 16 disabled = pythonAtLeast "3.9"; # See: https://github.com/rocky/python-uncompyle6/issues/331 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "af8330861bf940e7a3ae0f06d129b8e645191a36bf73ca15ff51997a837d41f8"; 20 + sha256 = "sha256-YgYzYY9t/B8+eBh+Igk014/8Y5wOOdrsofxTWquBcBQ="; 21 21 }; 22 22 23 23 checkInputs = [ nose pytest hypothesis six ];
+2 -2
pkgs/development/python-modules/xdis/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "xdis"; 9 - version = "5.0.11"; 9 + version = "6.0.2"; 10 10 disabled = isPy27; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "rocky"; 14 14 repo = "python-xdis"; 15 15 rev = version; 16 - sha256 = "sha256-KTPu0+bERLRCVESqJgBPtcftlniWl2+C9GDcf84ssiA="; 16 + sha256 = "sha256-P8mUkAO3usFCE+E9cna2x1iA2uyHVPX9FHDpX+kTFWQ="; 17 17 }; 18 18 19 19 checkInputs = [ pytest ];