Skip to content

Commit

Permalink
pythonPackage.cli-helpers: disable python2 tests
Browse files Browse the repository at this point in the history
ZHF #68361

(cherry picked from commit 7eed92a)
Signed-off-by: Jonathan Ringer <jonringer117@gmail.com>
  • Loading branch information
Jonathan Ringer committed Oct 2, 2019
1 parent d079834 commit 15bc013
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkgs/development/python-modules/cli-helpers/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
{ lib, buildPythonPackage, fetchPypi, isPy27
, backports_csv
, configobj
, terminaltables
, mock
, pytest
, tabulate
, backports_csv
, terminaltables
, wcwidth
, pytest
, mock
, isPy27
}:

buildPythonPackage rec {
Expand All @@ -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 = ''
Expand Down

0 comments on commit 15bc013

Please sign in to comment.