From bebbdb0a9eb1cd46afc8e17679b77c3150b01f77 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Fri, 17 Apr 2026 23:36:42 +0200 Subject: [PATCH] python314Packages.bitcoinrpc: fix build --- pkgs/development/python-modules/bitcoinrpc/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/bitcoinrpc/default.nix b/pkgs/development/python-modules/bitcoinrpc/default.nix index 5bf2f03077ce..b6c91ee1dc88 100644 --- a/pkgs/development/python-modules/bitcoinrpc/default.nix +++ b/pkgs/development/python-modules/bitcoinrpc/default.nix @@ -6,6 +6,7 @@ httpx, typing-extensions, pytestCheckHook, + pytest-asyncio, }: buildPythonPackage rec { @@ -26,7 +27,12 @@ buildPythonPackage rec { typing-extensions ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + pytestCheckHook + pytest-asyncio + ]; + + disabledTestPaths = [ "tests/test_connection.py" ]; pythonImportsCheck = [ "bitcoinrpc" ];