depot/third_party/nixpkgs/pkgs/development/python-modules/aiorpcx/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

35 lines
736 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
pythonOlder,
attrs,
}:
buildPythonPackage rec {
pname = "aiorpcx";
version = "0.23.1";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "aiorpcX";
sha256 = "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 ];
};
}