Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 33 lines 717 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, pythonOlder 5, attrs 6}: 7 8buildPythonPackage rec { 9 pname = "aiorpcx"; 10 version = "0.18.7"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "aiorpcX"; 15 sha256 = "808a9ec9172df11677a0f7b459b69d1a6cf8b19c19da55541fa31fb1afce5ce7"; 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}