mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
pythonPackages.aiorpcx: init at 0.10.2
Co-authored-by: nyanloutre <paul@nyanlout.re>
This commit is contained in:
parent
6fefd37f63
commit
4b7600185c
25
pkgs/development/python-modules/aiorpcx/default.nix
Normal file
25
pkgs/development/python-modules/aiorpcx/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, pythonOlder, attrs }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiorpcx";
|
||||
version = "0.10.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "aiorpcX";
|
||||
sha256 = "1p88k15jh0d2a18pnnbfcamsqi2bxvmmhpizmdlxfdxf8vy5ggyj";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -826,6 +826,8 @@ in {
|
||||
|
||||
aioprocessing = callPackage ../development/python-modules/aioprocessing { };
|
||||
|
||||
aiorpcx = callPackage ../development/python-modules/aiorpcx { };
|
||||
|
||||
ajpy = callPackage ../development/python-modules/ajpy { };
|
||||
|
||||
alabaster = callPackage ../development/python-modules/alabaster {};
|
||||
|
Loading…
Reference in New Issue
Block a user