Merge pull request #77227 from r-ryantm/auto-update/python3.7-xdis

python37Packages.xdis: 4.2.1 -> 4.2.2
This commit is contained in:
Mario Rodas 2020-01-07 21:39:58 -05:00 committed by GitHub
commit fa19a11092
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -11,11 +11,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "uncompyle6"; pname = "uncompyle6";
version = "3.6.1"; version = "3.6.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "f8c7ba2fd486d40d9a9fc1d6ab438588d7ce1be123aabf488736ff68a05f57f7"; sha256 = "aac071daef4b6cf95143ef08cd35d762a2bf2ea8249119a9371a91149c9996e7";
}; };
checkInputs = [ nose pytest hypothesis six ]; checkInputs = [ nose pytest hypothesis six ];

View File

@ -6,14 +6,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "xdis"; pname = "xdis";
version = "4.2.1"; version = "4.2.2";
disabled = isPy27; disabled = isPy27;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rocky"; owner = "rocky";
repo = "python-xdis"; repo = "python-xdis";
rev = version; rev = version;
sha256 = "19mnx746k9ls2f1321fl8nkps7x9by80f753f3c5wh1j91zivq6b"; sha256 = "0d286myx6z6cbih77h8z5p9vscxvww3gy59lmi1w6y2nq6c8sqzb";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
@ -27,6 +27,5 @@ buildPythonPackage rec {
description = "Python cross-version byte-code disassembler and marshal routines"; description = "Python cross-version byte-code disassembler and marshal routines";
homepage = https://github.com/rocky/python-xdis/; homepage = https://github.com/rocky/python-xdis/;
license = licenses.gpl2; license = licenses.gpl2;
broken = true; # doesn't support latest python3 interpreters
}; };
} }