From 8811817e3e1735223d0ce799d13fed4ef7ffb816 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 12 Apr 2021 16:38:51 +0200 Subject: [PATCH] python3Packages.jsonpath-ng: fix build The package was still using `disabledTestFiles` which should have been migrated to `disabledTestPaths`, which led to reinclusion of a test file that requires a dependency (oslotest), which we have not packaged yet. --- pkgs/development/python-modules/jsonpath-ng/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/jsonpath-ng/default.nix b/pkgs/development/python-modules/jsonpath-ng/default.nix index a623c859e16..da3a03c2a3e 100644 --- a/pkgs/development/python-modules/jsonpath-ng/default.nix +++ b/pkgs/development/python-modules/jsonpath-ng/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; - disabledTestFiles = [ + disabledTestPaths = [ # Exclude tests that require oslotest "tests/test_jsonpath_rw_ext.py" ];