2021-09-22 15:38:15 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, python-manilaclient
|
|
|
|
, stestr
|
|
|
|
, ddt
|
|
|
|
, tempest
|
|
|
|
, mock
|
|
|
|
, python-openstackclient
|
|
|
|
}:
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
buildPythonPackage {
|
2021-09-22 15:38:15 +00:00
|
|
|
pname = "python-manilaclient-tests";
|
2023-07-15 17:15:38 +00:00
|
|
|
inherit (python-manilaclient) version src;
|
|
|
|
format = "other";
|
2021-09-22 15:38:15 +00:00
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
dontInstall = true;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-09-22 15:38:15 +00:00
|
|
|
python-manilaclient
|
|
|
|
stestr
|
|
|
|
ddt
|
|
|
|
tempest
|
|
|
|
mock
|
|
|
|
python-openstackclient
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
stestr run
|
|
|
|
'';
|
|
|
|
}
|