mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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
|
|
'';
|
|
}
|