mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
30 lines
385 B
Nix
30 lines
385 B
Nix
{
|
|
buildPythonPackage,
|
|
docutils,
|
|
sphinx,
|
|
stestr,
|
|
stevedore,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "stevedore-tests";
|
|
inherit (stevedore) version src;
|
|
format = "other";
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
docutils
|
|
sphinx
|
|
stestr
|
|
stevedore
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
stestr run
|
|
runHook postCheck
|
|
'';
|
|
}
|