Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 605 B view raw
1{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }: 2 3buildPythonPackage rec { 4 pname = "aiorpcx"; 5 version = "0.10.4"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "aiorpcX"; 10 sha256 = "15jhklvl0ncy3mb2h9zkahky9fzzr1amgjylm2k3mvlpyn2dbpz6"; 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}