nixpkgs/pkgs/development/python-modules/aiorpcx/default.nix
Clemens Fruhwirth 4b7600185c pythonPackages.aiorpcx: init at 0.10.2
Co-authored-by: nyanloutre <paul@nyanlout.re>
2019-01-22 17:04:37 +01:00

26 lines
605 B
Nix

{ 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;
};
}