repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
linien-common
/
tests.nix
blob
7237548f2da368d64f75d6ac2fc2043b537313a1
1
{ lib
2
, buildPythonPackage
3
, linien-common
4
, linien-client
5
, pytestCheckHook
6
}:
7
8
buildPythonPackage {
9
pname = "linien-tests";
10
inherit (linien-common) version src;
11
format = "other";
12
pyproject = false;
13
14
dontBuild = true;
15
dontInstall = true;
16
17
nativeCheckInputs = [
18
linien-common
19
linien-client
20
pytestCheckHook
21
];
22
23
preCheck = ''
24
export HOME=$(mktemp -d)
25
'';
26
}