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

python3Packages.{xdis,uncompyle6}: bump to latest to support python 3.8.12
This commit is contained in:
Sandro 2021-11-01 21:12:22 +01:00 committed by GitHub
commit 107b7f5d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -12,12 +12,12 @@
buildPythonPackage rec {
pname = "uncompyle6";
version = "3.7.4";
version = "3.8.0";
disabled = pythonAtLeast "3.9"; # See: https://github.com/rocky/python-uncompyle6/issues/331
src = fetchPypi {
inherit pname version;
sha256 = "af8330861bf940e7a3ae0f06d129b8e645191a36bf73ca15ff51997a837d41f8";
sha256 = "sha256-YgYzYY9t/B8+eBh+Igk014/8Y5wOOdrsofxTWquBcBQ=";
};
checkInputs = [ nose pytest hypothesis six ];

View File

@ -6,14 +6,14 @@
buildPythonPackage rec {
pname = "xdis";
version = "5.0.11";
version = "6.0.2";
disabled = isPy27;
src = fetchFromGitHub {
owner = "rocky";
repo = "python-xdis";
rev = version;
sha256 = "sha256-KTPu0+bERLRCVESqJgBPtcftlniWl2+C9GDcf84ssiA=";
sha256 = "sha256-P8mUkAO3usFCE+E9cna2x1iA2uyHVPX9FHDpX+kTFWQ=";
};
checkInputs = [ pytest ];