forked from mirrors/nixpkgs
python39Packages.pyflakes: disable python39 tests
Sensitive to exact parser output
This commit is contained in:
parent
b61df8cd97
commit
fbda64845f
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue