Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / aiorpcx / default.nix
blob8e2078f521282240095de52f551d73f7bceed86c
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pythonOlder
5 , attrs
6 }:
8 buildPythonPackage rec {
9   pname = "aiorpcx";
10   version = "0.18.7";
12   src = fetchPypi {
13     inherit version;
14     pname = "aiorpcX";
15     sha256 = "808a9ec9172df11677a0f7b459b69d1a6cf8b19c19da55541fa31fb1afce5ce7";
16   };
18   propagatedBuildInputs = [ attrs ];
20   disabled = pythonOlder "3.6";
22   # Checks needs internet access
23   doCheck = false;
25   pythonImportsCheck = [ "aiorpcx" ];
27   meta = with lib; {
28     description = "Transport, protocol and framing-independent async RPC client and server implementation";
29     homepage = "https://github.com/kyuupichan/aiorpcX";
30     license = licenses.mit;
31     maintainers = with maintainers; [ prusnak ];
32   };