python3Packages.astroid: disable for python3.9

See https://github.com/PyCQA/astroid/issues/845
This commit is contained in:
Jonathan Ringer 2020-11-29 13:28:54 -08:00 committed by Frederik Rietdijk
parent 0ffef62eba
commit 754cd330ba

View File

@ -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;