diff options
Diffstat (limited to 'pkgs/development/python-modules/rpcq/default.nix')
-rw-r--r-- | pkgs/development/python-modules/rpcq/default.nix | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/rpcq/default.nix b/pkgs/development/python-modules/rpcq/default.nix index 42643ca74826..63b90d423dd0 100644 --- a/pkgs/development/python-modules/rpcq/default.nix +++ b/pkgs/development/python-modules/rpcq/default.nix @@ -1,15 +1,16 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, msgpack -, numpy -, pytest-asyncio -, pytestCheckHook -, python-rapidjson -, pythonOlder -, pyzmq -, ruamel-yaml -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + msgpack, + numpy, + pytest-asyncio, + pytestCheckHook, + python-rapidjson, + pythonOlder, + pyzmq, + ruamel-yaml, + setuptools, }: buildPythonPackage rec { @@ -31,9 +32,7 @@ buildPythonPackage rec { --replace "msgpack>=0.6,<1.0" "msgpack" ''; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ msgpack @@ -54,12 +53,10 @@ buildPythonPackage rec { "rpcq/test/test_spec.py" ]; - pythonImportsCheck = [ - "rpcq" - ]; + pythonImportsCheck = [ "rpcq" ]; meta = with lib; { - description = "The RPC framework and message specification for rigetti Quantum Cloud services"; + description = "RPC framework and message specification for rigetti Quantum Cloud services"; homepage = "https://github.com/rigetti/rpcq"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; |