mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 19:43:02 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
32 lines
449 B
Nix
32 lines
449 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;
|
|
|
|
nativeCheckInputs = [
|
|
python-manilaclient
|
|
stestr
|
|
ddt
|
|
tempest
|
|
mock
|
|
python-openstackclient
|
|
];
|
|
|
|
checkPhase = ''
|
|
stestr run
|
|
'';
|
|
}
|