about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aiorpcx/default.nix
blob: 5b270319661a2a43c0d9f3dea181a7ae98ba84ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }:

buildPythonPackage rec {
  pname = "aiorpcx";
  version = "0.18.4";

  src = fetchPypi {
    inherit version;
    pname = "aiorpcX";
    sha256 = "0jpvrkan6w8bpq017m8si7r9hb1pyw3ip4vr1fl2pmi8ngzc1jdy";
  };

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