summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiorpcx/default.nix
diff options
context:
space:
mode:
authorClemens Fruhwirth <clemens@endorphin.org>2019-01-21 12:46:37 +0100
committernyanloutre <paul@nyanlout.re>2019-01-22 17:04:37 +0100
commit4b7600185ca3470e3bc1875e2ba8b23fc6f10741 (patch)
tree6ccbeccaaeac6fdcbdaa0b00b569b03aed934f32 /pkgs/development/python-modules/aiorpcx/default.nix
parent6fefd37f63d38b49d0c353f633986a3b3e632919 (diff)
downloadnixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.tar
nixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.tar.gz
nixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.tar.bz2
nixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.tar.lz
nixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.tar.xz
nixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.tar.zst
nixpkgs-4b7600185ca3470e3bc1875e2ba8b23fc6f10741.zip
pythonPackages.aiorpcx: init at 0.10.2
Co-authored-by: nyanloutre <paul@nyanlout.re>
Diffstat (limited to 'pkgs/development/python-modules/aiorpcx/default.nix')
-rw-r--r--pkgs/development/python-modules/aiorpcx/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiorpcx/default.nix b/pkgs/development/python-modules/aiorpcx/default.nix
new file mode 100644
index 00000000000..1c5d651264e
--- /dev/null
+++ b/pkgs/development/python-modules/aiorpcx/default.nix
@@ -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;
+  };
+}