summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonrpc-async
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-02-26 19:38:16 +0800
committerPeter Hoeg <peter@hoeg.com>2018-02-26 23:46:42 +0800
commit48a792d707a0a6b62e2450313b79bf3bf2963e03 (patch)
tree3aff55cdc71e6e15492064b5a96796ef905716a7 /pkgs/development/python-modules/jsonrpc-async
parentafd191adba92e3d0a60e2223ffe9217acd149826 (diff)
downloadnixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.tar
nixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.tar.gz
nixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.tar.bz2
nixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.tar.lz
nixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.tar.xz
nixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.tar.zst
nixpkgs-48a792d707a0a6b62e2450313b79bf3bf2963e03.zip
jsonrpc-async: init at 0.6
Diffstat (limited to 'pkgs/development/python-modules/jsonrpc-async')
-rw-r--r--pkgs/development/python-modules/jsonrpc-async/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jsonrpc-async/default.nix b/pkgs/development/python-modules/jsonrpc-async/default.nix
new file mode 100644
index 00000000000..a0056ce2500
--- /dev/null
+++ b/pkgs/development/python-modules/jsonrpc-async/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, aiohttp, jsonrpc-base }:
+
+buildPythonPackage rec {
+  pname = "jsonrpc-async";
+  version = "0.6";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0f1p3qv56jn4sdyp8gzf915nya6vr0rn2pbzld9x23y9jdjmibzw";
+  };
+
+  propagatedBuildInputs = [ aiohttp jsonrpc-base ];
+
+  meta = with stdenv.lib; {
+    description = "A JSON-RPC client library for asyncio";
+    homepage = http://github.com/armills/jsonrpc-async;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ peterhoeg ];
+  };
+}