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