python3Packages.uncompyle6: disable for python3.9

See: https://github.com/rocky/python-uncompyle6/issues/331
This commit is contained in:
Jonathan Ringer 2020-11-29 13:44:34 -08:00 committed by Frederik Rietdijk
parent b31bc72bc3
commit 789b163aab

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, spark_parser
, xdis
, nose
@ -12,6 +13,7 @@
buildPythonPackage rec {
pname = "uncompyle6";
version = "3.7.4";
disabled = pythonAtLeast "3.9"; # See: https://github.com/rocky/python-uncompyle6/issues/331
src = fetchPypi {
inherit pname version;