diff options
Diffstat (limited to 'pkgs/development/python-modules/monero/default.nix')
-rw-r--r-- | pkgs/development/python-modules/monero/default.nix | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/monero/default.nix b/pkgs/development/python-modules/monero/default.nix index 71554607326c..4fdab49a521e 100644 --- a/pkgs/development/python-modules/monero/default.nix +++ b/pkgs/development/python-modules/monero/default.nix @@ -1,15 +1,16 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pycryptodomex -, pysocks -, pynacl -, requests -, six -, varint -, pytestCheckHook -, pytest-cov -, responses +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pycryptodomex, + pysocks, + pynacl, + requests, + six, + varint, + pytestCheckHook, + pytest-cov-stub, + responses, }: buildPythonPackage rec { @@ -41,7 +42,11 @@ buildPythonPackage rec { varint ]; - nativeCheckInputs = [ pytestCheckHook pytest-cov responses ]; + nativeCheckInputs = [ + pytestCheckHook + pytest-cov-stub + responses + ]; meta = with lib; { description = "Comprehensive Python module for handling Monero"; |