1{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }:
2
3buildPythonPackage rec {
4 pname = "aiorpcx";
5 version = "0.18.4";
6
7 src = fetchPypi {
8 inherit version;
9 pname = "aiorpcX";
10 sha256 = "0jpvrkan6w8bpq017m8si7r9hb1pyw3ip4vr1fl2pmi8ngzc1jdy";
11 };
12
13 propagatedBuildInputs = [ attrs ];
14
15 disabled = pythonOlder "3.6";
16
17 # Checks needs internet access
18 doCheck = false;
19
20 meta = {
21 description = "Transport, protocol and framing-independent async RPC client and server implementation";
22 license = lib.licenses.mit;
23 homepage = https://github.com/kyuupichan/aiorpcX;
24 };
25}