pythonPackages.cli-helpers: fix dependencies (#52692)
This commit is contained in:
parent
07adbdf1e7
commit
7cb982776e
@ -1,11 +1,13 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, configobj
|
||||
, terminaltables
|
||||
, tabulate
|
||||
, backports_csv
|
||||
, wcwidth
|
||||
, pytest
|
||||
, mock
|
||||
, isPy27
|
||||
}:
|
||||
|
||||
@ -19,12 +21,13 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
configobj
|
||||
terminaltables
|
||||
tabulate
|
||||
wcwidth
|
||||
] ++ (lib.optionals isPy27 [ backports_csv ]);
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkInputs = [ pytest mock ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
|
Loading…
Reference in New Issue
Block a user