Merge pull request #198251 from fabaff/rpyc-bump

python310Packages.rpyc: 5.1.0 -> 5.2.3
This commit is contained in:
Mario Rodas 2022-10-28 07:18:29 -05:00 committed by GitHub
commit e7eaedbaf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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