1{
2 lib,
3 buildPythonPackage,
4 linien-common,
5 linien-client,
6 pytestCheckHook,
7}:
8
9buildPythonPackage {
10 pname = "linien-tests";
11 inherit (linien-common) version src;
12 format = "other";
13 pyproject = false;
14
15 dontBuild = true;
16 dontInstall = true;
17
18 nativeCheckInputs = [
19 linien-common
20 linien-client
21 pytestCheckHook
22 ];
23
24 preCheck = ''
25 export HOME=$(mktemp -d)
26 '';
27}