From c42235a7815138eb74ab129a9dadb69820374686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 22 Apr 2026 15:07:31 -0700 Subject: [PATCH] python3Packages.pint: don't depend on pytest-benchmark --- pkgs/development/python-modules/pint/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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";