From cbc1ce64af0dca88ea496b2a3231592d0f3ee96f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 28 Oct 2022 12:50:23 +0200 Subject: [PATCH] python310Packages.rpyc: 5.1.0 -> 5.2.3 --- pkgs/development/python-modules/rpyc/default.nix | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/rpyc/default.nix b/pkgs/development/python-modules/rpyc/default.nix index a8849fd17cd3..d9b81ddf5807 100644 --- a/pkgs/development/python-modules/rpyc/default.nix +++ b/pkgs/development/python-modules/rpyc/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, hatchling , plumbum , pytestCheckHook , pythonOlder @@ -8,18 +9,22 @@ buildPythonPackage rec { pname = "rpyc"; - version = "5.1.0"; - format = "setuptools"; + version = "5.2.3"; + format = "pyproject"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "tomerfiliba"; repo = pname; rev = version; - sha256 = "sha256-Xeot4QEgTZjvdO0ydmKjccp6zwC93Yp/HkRlSgyDf8k="; + hash = "sha256-SDt6Oh+8qRIdM02FEFM+Xw1y/bBn66D6KbOrhGVs6ng="; }; + nativeBuildInputs = [ + hatchling + ]; + propagatedBuildInputs = [ plumbum ]; @@ -31,6 +36,9 @@ buildPythonPackage rec { disabledTests = [ # Disable tests that requires network access "test_api" + "test_close_timeout" + "test_deploy" + "test_listing" "test_pruning" "test_rpyc" # Test is outdated