diff --git a/pkgs/development/python-modules/pint/default.nix b/pkgs/development/python-modules/pint/default.nix index c02656ed592b..a2c95b8796fe 100644 --- a/pkgs/development/python-modules/pint/default.nix +++ b/pkgs/development/python-modules/pint/default.nix @@ -15,7 +15,6 @@ # tests pytestCheckHook, - pytest-benchmark, numpy, matplotlib, uncertainties, @@ -54,12 +53,13 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook - pytest-benchmark matplotlib writableTmpDirAsHomeHook ]; - pytestFlags = [ "--benchmark-disable" ]; + disabledTestPaths = [ + "pint/testsuite/benchmarks" + ]; meta = { changelog = "https://github.com/hgrecco/pint/blob/${version}/CHANGES";