summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/bitcoinrpc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bitcoinrpc/default.nix')
-rw-r--r--pkgs/development/python-modules/bitcoinrpc/default.nix25
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/bitcoinrpc/default.nix b/pkgs/development/python-modules/bitcoinrpc/default.nix
index 65c05c01991b..cfdc523b1213 100644
--- a/pkgs/development/python-modules/bitcoinrpc/default.nix
+++ b/pkgs/development/python-modules/bitcoinrpc/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, fetchFromGitHub
-, buildPythonPackage
-, orjson
-, httpx
-, typing-extensions
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ fetchFromGitHub,
+ buildPythonPackage,
+ orjson,
+ httpx,
+ typing-extensions,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -28,13 +29,9 @@ buildPythonPackage rec {
typing-extensions
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "bitcoinrpc"
- ];
+ pythonImportsCheck = [ "bitcoinrpc" ];
meta = with lib; {
description = "Bitcoin JSON-RPC client";