1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 pythonOlder, 6 attrs, 7}: 8 9buildPythonPackage rec { 10 pname = "aiorpcx"; 11 version = "0.23.1"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit version; 16 pname = "aiorpcX"; 17 sha256 = "sha256-WyMALxpNXTCF4xVVoHUZxe+NTEAHHrSZVW/9qBFIYKI="; 18 }; 19 20 propagatedBuildInputs = [ attrs ]; 21 22 disabled = pythonOlder "3.6"; 23 24 # Checks needs internet access 25 doCheck = false; 26 27 pythonImportsCheck = [ "aiorpcx" ]; 28 29 meta = with lib; { 30 description = "Transport, protocol and framing-independent async RPC client and server implementation"; 31 homepage = "https://github.com/kyuupichan/aiorpcX"; 32 license = licenses.mit; 33 maintainers = with maintainers; [ prusnak ]; 34 }; 35}