f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
26 lines
391 B
Nix
26 lines
391 B
Nix
{
|
|
buildPythonPackage,
|
|
linien-common,
|
|
linien-client,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "linien-tests";
|
|
inherit (linien-common) version src;
|
|
format = "other";
|
|
pyproject = false;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
nativeCheckInputs = [
|
|
linien-common
|
|
linien-client
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
}
|