3
0
Fork 0
forked from mirrors/nixpkgs

python39Packages.pyflakes: disable python39 tests

Sensitive to exact parser output
This commit is contained in:
Jonathan Ringer 2020-11-10 18:21:15 -08:00
parent b61df8cd97
commit fbda64845f

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, unittest2 }:
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, unittest2 }:
buildPythonPackage rec {
pname = "pyflakes";
@ -11,6 +11,9 @@ buildPythonPackage rec {
checkInputs = [ unittest2 ];
# some tests are output dependent, which have changed slightly
doCheck = pythonOlder "3.9";
meta = with stdenv.lib; {
homepage = "https://launchpad.net/pyflakes";
description = "A simple program which checks Python source files for errors";