nixpkgs/pkgs/development/python-modules/aiorpcx/default.nix
arcnmx 7d07263f75 Revert "python37Packages.aiorpcx: 0.17.0 -> 0.18.3"
This reverts commit 299996bc38.
electrum, the only dependent package, failed to build with this.
2019-06-23 08:54:39 +02:00

26 lines
605 B
Nix

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