nixpkgs/pkgs/development/python-modules/aiorpcx/default.nix

36 lines
734 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
pythonOlder,
attrs,
}:
buildPythonPackage rec {
pname = "aiorpcx";
version = "0.23.1";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "aiorpcX";
hash = "sha256-WyMALxpNXTCF4xVVoHUZxe+NTEAHHrSZVW/9qBFIYKI=";
};
propagatedBuildInputs = [ attrs ];
disabled = pythonOlder "3.6";
# Checks needs internet access
doCheck = false;
pythonImportsCheck = [ "aiorpcx" ];
meta = with lib; {
description = "Transport, protocol and framing-independent async RPC client and server implementation";
homepage = "https://github.com/kyuupichan/aiorpcX";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}