diff options
Diffstat (limited to 'pkgs/development/python-modules/rpyc/default.nix')
-rw-r--r-- | pkgs/development/python-modules/rpyc/default.nix | 39 |
1 files changed, 16 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/rpyc/default.nix b/pkgs/development/python-modules/rpyc/default.nix index 73c40ee23f79..4035fd5e9e1c 100644 --- a/pkgs/development/python-modules/rpyc/default.nix +++ b/pkgs/development/python-modules/rpyc/default.nix @@ -1,16 +1,17 @@ -{ lib -, stdenv -, buildPythonPackage -, fetchFromGitHub -, hatchling -, plumbum -, pytestCheckHook -, pythonOlder +{ + lib, + stdenv, + buildPythonPackage, + fetchFromGitHub, + hatchling, + plumbum, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { pname = "rpyc"; - version = "6.0.0"; + version = "6.0.1"; pyproject = true; disabled = pythonOlder "3.7"; @@ -19,20 +20,14 @@ buildPythonPackage rec { owner = "tomerfiliba"; repo = "rpyc"; rev = "refs/tags/${version}"; - hash = "sha256-BvXEXZlVbOmKBwnSBCDksUkbT7JPcMX48KZe/Gd5Y8Q="; + hash = "sha256-ZYGOwg2IJtVVxHV2hC3inliTLP4BBFOnOz7VPhRpcgg="; }; - build-system = [ - hatchling - ]; + build-system = [ hatchling ]; - dependencies = [ - plumbum - ]; + dependencies = [ plumbum ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; preCheck = '' export PYTHONPATH=$(pwd)/tests:$PYTHONPATH @@ -62,11 +57,9 @@ buildPythonPackage rec { "tests/test_magic.py" ]; - pythonImportsCheck = [ - "rpyc" - ]; + pythonImportsCheck = [ "rpyc" ]; - doCheck = !stdenv.isDarwin; + doCheck = !stdenv.hostPlatform.isDarwin; meta = with lib; { description = "Remote Python Call (RPyC), a transparent and symmetric RPC library"; |