diff options
| author | Jonathan Ringer <jonringer117@gmail.com> | 2019-12-22 12:18:14 -0800 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2019-12-30 16:46:51 +0100 |
| commit | 37f161014fee606afaa7253414f2b045ee61ea23 (patch) | |
| tree | a6549232fd9d8abc3413670f89c3a42dc163e314 | |
| parent | pythonPackages.audio-metadata: adjust more-itertools version range (diff) | |
| download | nixpkgs-37f161014fee606afaa7253414f2b045ee61ea23.tar.gz | |
pythonPackages.xdis: mark broken
Very specific to patch version of python interpreter,
unfortunately doesn't support newest versions
| -rw-r--r-- | pkgs/development/python-modules/xdis/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/xdis/default.nix b/pkgs/development/python-modules/xdis/default.nix index 533e8d8b577b..636b7c5045c5 100644 --- a/pkgs/development/python-modules/xdis/default.nix +++ b/pkgs/development/python-modules/xdis/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "xdis"; - version = "4.1.3"; + version = "4.2.1"; disabled = isPy27; src = fetchFromGitHub { owner = "rocky"; repo = "python-xdis"; rev = version; - sha256 = "0ixx9svyi0kw3z2i51cv1cyg4l5z8hy432kxgsvz20mr9a8z5c91"; + sha256 = "19mnx746k9ls2f1321fl8nkps7x9by80f753f3c5wh1j91zivq6b"; }; checkInputs = [ pytest ]; @@ -27,6 +27,6 @@ buildPythonPackage rec { description = "Python cross-version byte-code disassembler and marshal routines"; homepage = https://github.com/rocky/python-xdis/; license = licenses.gpl2; + broken = true; # doesn't support latest python3 interpreters }; - } |
