mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 09:44:11 +01:00
35 lines
515 B
Nix
35 lines
515 B
Nix
{
|
|
buildPythonPackage,
|
|
ddt,
|
|
fixtures,
|
|
python-manilaclient,
|
|
python-openstackclient,
|
|
requests-mock,
|
|
stestr,
|
|
tempest,
|
|
testtools,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "python-manilaclient-tests";
|
|
inherit (python-manilaclient) version src;
|
|
pyproject = false;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
ddt
|
|
fixtures
|
|
python-manilaclient
|
|
python-openstackclient
|
|
requests-mock
|
|
stestr
|
|
tempest
|
|
testtools
|
|
];
|
|
|
|
checkPhase = ''
|
|
stestr run
|
|
'';
|
|
}
|