11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "tomerfiliba";
21 rev = "refs/tags/${version}";
22 hash = "sha256-2b6ryqDqZPs5VniLhCwA1/c9+3CT+JJrr3VwP3G6tpY=";
29 propagatedBuildInputs = [
38 # Disable tests that requires network access
46 # ssl.SSLError: [SSL: NO_CIPHERS_AVAILABLE] no ciphers available (_ssl.c:997)
50 pythonImportsCheck = [
54 doCheck = !stdenv.isDarwin;
57 description = "Remote Python Call (RPyC), a transparent and symmetric RPC library";
58 homepage = "https://rpyc.readthedocs.org";
59 changelog = "https://github.com/tomerfiliba-org/rpyc/blob/${version}/CHANGELOG.rst";
60 license = with licenses; [ mit ];
61 maintainers = with maintainers; [ fab ];