python3Packages.astroid: disable for python3.9
See https://github.com/PyCQA/astroid/issues/845
This commit is contained in:
parent
0ffef62eba
commit
754cd330ba
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage, pythonOlder, isPyPy
|
{ lib, fetchPypi, buildPythonPackage, pythonOlder, isPyPy, pythonAtLeast
|
||||||
, lazy-object-proxy, six, wrapt, typing, typed-ast
|
, lazy-object-proxy, six, wrapt, typing, typed-ast
|
||||||
, pytestrunner, pytest
|
, pytestrunner, pytest
|
||||||
}:
|
}:
|
||||||
@ -7,7 +7,7 @@ buildPythonPackage rec {
|
|||||||
pname = "astroid";
|
pname = "astroid";
|
||||||
version = "2.4.2";
|
version = "2.4.2";
|
||||||
|
|
||||||
disabled = pythonOlder "3.4";
|
disabled = pythonOlder "3.4" || pythonAtLeast "3.9";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user