Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 linien-common, 4 linien-client, 5 pytestCheckHook, 6}: 7 8buildPythonPackage { 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}