mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.uncompyle6: disable for python3.9
See: https://github.com/rocky/python-uncompyle6/issues/331
This commit is contained in:
parent
b31bc72bc3
commit
789b163aab
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user