pythonPackages.aiorpcx: init at 0.10.2

Co-authored-by: nyanloutre <paul@nyanlout.re>
This commit is contained in:
Clemens Fruhwirth
2019-01-21 12:46:37 +01:00
committed by nyanloutre
parent 6fefd37f63
commit 4b7600185c
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }:
buildPythonPackage rec {
pname = "aiorpcx";
version = "0.10.2";
src = fetchPypi {
inherit version;
pname = "aiorpcX";
sha256 = "1p88k15jh0d2a18pnnbfcamsqi2bxvmmhpizmdlxfdxf8vy5ggyj";
};
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;
};
}