pythonPackages.xdis: mark broken

Very specific to patch version of python interpreter,
unfortunately doesn't support newest versions
This commit is contained in:
Jonathan Ringer 2019-12-22 12:18:14 -08:00 committed by Frederik Rietdijk
parent 2270bc7895
commit 37f161014f

View File

@ -6,14 +6,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "xdis"; pname = "xdis";
version = "4.1.3"; version = "4.2.1";
disabled = isPy27; disabled = isPy27;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rocky"; owner = "rocky";
repo = "python-xdis"; repo = "python-xdis";
rev = version; rev = version;
sha256 = "0ixx9svyi0kw3z2i51cv1cyg4l5z8hy432kxgsvz20mr9a8z5c91"; sha256 = "19mnx746k9ls2f1321fl8nkps7x9by80f753f3c5wh1j91zivq6b";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
@ -27,6 +27,6 @@ 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
}; };
} }