26 lines
605 B
Nix
26 lines
605 B
Nix
{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiorpcx";
|
|
version = "0.17.0";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "aiorpcX";
|
|
sha256 = "14np5r75rs0v45vsv20vbzmnv3qisvm9mdllj1j9s1633cvcik0k";
|
|
};
|
|
|
|
propagatedBuildInputs = [ attrs ];
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
# Checks needs internet access
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Transport, protocol and framing-independent async RPC client and server implementation";
|
|
license = lib.licenses.mit;
|
|
homepage = https://github.com/kyuupichan/aiorpcX;
|
|
};
|
|
}
|