pythonPackage.cli-helpers: disable python2 tests
This commit is contained in:
parent
4e7364abab
commit
7eed92a7ac
@ -1,14 +1,11 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, configobj
|
||||
, terminaltables
|
||||
, tabulate
|
||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, backports_csv
|
||||
, wcwidth
|
||||
, pytest
|
||||
, configobj
|
||||
, mock
|
||||
, isPy27
|
||||
, pytest
|
||||
, tabulate
|
||||
, terminaltables
|
||||
, wcwidth
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -27,6 +24,9 @@ buildPythonPackage rec {
|
||||
wcwidth
|
||||
] ++ (lib.optionals isPy27 [ backports_csv ]);
|
||||
|
||||
# namespace collision between backport.csv and backports.configparser
|
||||
doCheck = !isPy27;
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
|
||||
checkPhase = ''
|
||||
|
Loading…
Reference in New Issue
Block a user