evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / aiorpcx / default.nix
blob7df3f61027a8a6f23aeb76a466f091006e23f43b
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   pythonOlder,
6   attrs,
7 }:
9 buildPythonPackage rec {
10   pname = "aiorpcx";
11   version = "0.23.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit version;
16     pname = "aiorpcX";
17     hash = "sha256-WyMALxpNXTCF4xVVoHUZxe+NTEAHHrSZVW/9qBFIYKI=";
18   };
20   propagatedBuildInputs = [ attrs ];
22   disabled = pythonOlder "3.6";
24   # Checks needs internet access
25   doCheck = false;
27   pythonImportsCheck = [ "aiorpcx" ];
29   meta = with lib; {
30     description = "Transport, protocol and framing-independent async RPC client and server implementation";
31     homepage = "https://github.com/kyuupichan/aiorpcX";
32     license = licenses.mit;
33     maintainers = with maintainers; [ prusnak ];
34   };