From 26df8e7d72dc4741424d6cd0e2208cafff6f098f Mon Sep 17 00:00:00 2001 From: Pyrox Date: Sun, 28 Jul 2024 19:12:40 -0400 Subject: [PATCH] python312Packages.bx-python: Drop nose dependency --- pkgs/development/python-modules/bx-python/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/bx-python/default.nix b/pkgs/development/python-modules/bx-python/default.nix index 2ea260df66f8..14b801945006 100644 --- a/pkgs/development/python-modules/bx-python/default.nix +++ b/pkgs/development/python-modules/bx-python/default.nix @@ -7,7 +7,7 @@ cython, zlib, python-lzo, - nose, + pytestCheckHook, }: buildPythonPackage rec { @@ -30,10 +30,13 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy + nativeCheckInputs = [ python-lzo + pytestCheckHook ]; - nativeCheckInputs = [ nose ]; + # https://github.com/bxlab/bx-python/issues/101 + doCheck = false; postInstall = '' cp -r scripts/* $out/bin