54fa84b988
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-aiorpcx/versions
26 lines
605 B
Nix
26 lines
605 B
Nix
{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiorpcx";
|
|
version = "0.18.3";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "aiorpcX";
|
|
sha256 = "0k545hc7wl6sh1svydzbv6x7sx5pig2pqkl3yxs9riwmvzawx9xp";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|