Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / linien-common / tests.nix
blob7237548f2da368d64f75d6ac2fc2043b537313a1
1 { lib
2 , buildPythonPackage
3 , linien-common
4 , linien-client
5 , pytestCheckHook
6 }:
8 buildPythonPackage {
9   pname = "linien-tests";
10   inherit (linien-common) version src;
11   format = "other";
12   pyproject = false;
14   dontBuild = true;
15   dontInstall = true;
17   nativeCheckInputs = [
18     linien-common
19     linien-client
20     pytestCheckHook
21   ];
23   preCheck = ''
24     export HOME=$(mktemp -d)
25   '';