2021-11-12 10:22:34 +01:00
|
|
|
{ buildPythonPackage
|
2021-09-11 12:08:00 +02:00
|
|
|
, debtcollector
|
|
|
|
, stestr
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "debtcollector-tests";
|
|
|
|
inherit (debtcollector) version;
|
|
|
|
|
|
|
|
src = debtcollector.src;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
debtcollector
|
|
|
|
stestr
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
stestr run
|
|
|
|
'';
|
|
|
|
}
|