From fc1c8dd7bde208b90fd6f9cfef60987cee530574 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sat, 11 Oct 2025 23:28:57 +0200 Subject: [PATCH] python313Packages.kiss-headers: fix build --- pkgs/development/python-modules/kiss-headers/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/kiss-headers/default.nix b/pkgs/development/python-modules/kiss-headers/default.nix index 79011b9660bf..8e858c60945a 100644 --- a/pkgs/development/python-modules/kiss-headers/default.nix +++ b/pkgs/development/python-modules/kiss-headers/default.nix @@ -29,9 +29,12 @@ buildPythonPackage rec { pytest-cov-stub ]; + preCheck = '' + rm -rf src # cause pycache conflict + ''; + disabledTestPaths = [ # Tests require internet access - "kiss_headers/__init__.py" "tests/test_serializer.py" "tests/test_with_http_request.py" ];