32 lines
443 B
Nix
32 lines
443 B
Nix
|
{ buildPythonPackage
|
||
|
, python-manilaclient
|
||
|
, stestr
|
||
|
, ddt
|
||
|
, tempest
|
||
|
, mock
|
||
|
, python-openstackclient
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "python-manilaclient-tests";
|
||
|
inherit (python-manilaclient) version;
|
||
|
|
||
|
src = python-manilaclient.src;
|
||
|
|
||
|
dontBuild = true;
|
||
|
dontInstall = true;
|
||
|
|
||
|
checkInputs = [
|
||
|
python-manilaclient
|
||
|
stestr
|
||
|
ddt
|
||
|
tempest
|
||
|
mock
|
||
|
python-openstackclient
|
||
|
];
|
||
|
|
||
|
checkPhase = ''
|
||
|
stestr run
|
||
|
'';
|
||
|
}
|