summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiorpcx/default.nix
blob: 8e2078f521282240095de52f551d73f7bceed86c (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
26
27
28
29
30
31
32
33
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, attrs
}:

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

  src = fetchPypi {
    inherit version;
    pname = "aiorpcX";
    sha256 = "808a9ec9172df11677a0f7b459b69d1a6cf8b19c19da55541fa31fb1afce5ce7";
  };

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