diff options
| author | Jonathan Ringer <jonringer117@gmail.com> | 2020-11-29 13:28:54 -0800 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2020-12-01 14:44:24 +0100 |
| commit | 754cd330baeb4a3d54e69f16ee8f40ea99e9b982 (patch) | |
| tree | b414c30a7df5cee6036926771a2bd58fe5170695 /pkgs/development/python-modules/astroid/default.nix | |
| parent | python3Packages.databricks-connect: fix build (diff) | |
| download | nixpkgs-754cd330baeb4a3d54e69f16ee8f40ea99e9b982.tar.gz | |
python3Packages.astroid: disable for python3.9
See https://github.com/PyCQA/astroid/issues/845
Diffstat (limited to 'pkgs/development/python-modules/astroid/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/astroid/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix index 927e6a6d5a64..49f04bcb9116 100644 --- a/pkgs/development/python-modules/astroid/default.nix +++ b/pkgs/development/python-modules/astroid/default.nix @@ -1,4 +1,4 @@ -{ lib, fetchPypi, buildPythonPackage, pythonOlder, isPyPy +{ lib, fetchPypi, buildPythonPackage, pythonOlder, isPyPy, pythonAtLeast , lazy-object-proxy, six, wrapt, typing, typed-ast , pytestrunner, pytest }: @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "astroid"; version = "2.4.2"; - disabled = pythonOlder "3.4"; + disabled = pythonOlder "3.4" || pythonAtLeast "3.9"; src = fetchPypi { inherit pname version; |
