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