27 lines
571 B
Nix
27 lines
571 B
Nix
|
{ buildPythonPackage, stestr }:
|
||
|
|
||
|
buildPythonPackage {
|
||
|
pname = "stestr-tests";
|
||
|
inherit (stestr) version src;
|
||
|
format = "other";
|
||
|
|
||
|
postPatch = ''
|
||
|
# only a small portion of the listed packages are actually needed for running the tests
|
||
|
# so instead of removing them one by one remove everything
|
||
|
rm test-requirements.txt
|
||
|
'';
|
||
|
|
||
|
dontBuild = true;
|
||
|
dontInstall = true;
|
||
|
preConfigure = ''
|
||
|
pythonOutputDistPhase() { touch $dist; }
|
||
|
'';
|
||
|
|
||
|
nativeCheckInputs = [ stestr ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
export PATH=$out/bin:$PATH
|
||
|
export HOME=$TMPDIR
|
||
|
'';
|
||
|
}
|