signal-export: enable tests

This commit is contained in:
phaer
2026-08-22 09:21:48 +02:00
parent da49bec53e
commit 7a10920939

View File

@@ -3,6 +3,7 @@
python3,
fetchPypi,
nix-update-script,
writableTmpDirAsHomeHook,
}:
python3.pkgs.buildPythonApplication (finalAttrs: {
@@ -30,6 +31,14 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
sqlcipher3-wheels
];
nativeCheckInputs = [
python3.pkgs.pytestCheckHook
# tests/test_overwrite.py asserts that Path.home() exists
writableTmpDirAsHomeHook
];
pythonImportsCheck = [ "sigexport" ];
passthru.updateScript = nix-update-script { };
meta = {