diff options
Diffstat (limited to 'pkgs/development/python-modules/jsonrpc-base/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/jsonrpc-base/default.nix | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/jsonrpc-base/default.nix b/pkgs/development/python-modules/jsonrpc-base/default.nix index f10f9bbb8b82..c4b47c0fc6de 100644 --- a/pkgs/development/python-modules/jsonrpc-base/default.nix +++ b/pkgs/development/python-modules/jsonrpc-base/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytest-asyncio -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytest-asyncio, + pytestCheckHook, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -21,22 +22,16 @@ buildPythonPackage rec { hash = "sha256-AbpuAW+wuGc+Vj4FDFlyB2YbiwDxPLuyAGiNcmGU+Ss="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytest-asyncio pytestCheckHook ]; - pytestFlagsArray = [ - "tests.py" - ]; + pytestFlagsArray = [ "tests.py" ]; - pythonImportsCheck = [ - "jsonrpc_base" - ]; + pythonImportsCheck = [ "jsonrpc_base" ]; meta = with lib; { description = "A JSON-RPC client library base interface"; |
