Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / stestr / tests.nix
blobf4964fa8f66e3d6b9336c7e51c577098725377e4
1 {  buildPythonPackage
2 , stestr
3 }:
5 buildPythonPackage {
6   pname = "stestr-tests";
7   inherit (stestr) version src;
8   format = "other";
10   postPatch = ''
11     # only a small portion of the listed packages are actually needed for running the tests
12     # so instead of removing them one by one remove everything
13     rm test-requirements.txt
14   '';
16   dontBuild = true;
17   dontInstall = true;
18   preConfigure = ''
19     pythonOutputDistPhase() { touch $dist; }
20   '';
22   nativeCheckInputs = [
23     stestr
24   ];
26   checkPhase = ''
27     export PATH=$out/bin:$PATH
28     export HOME=$TMPDIR
29   '';