summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonrpc-base
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2018-02-26 19:37:54 +0800
committerPeter Hoeg <peter@hoeg.com>2018-02-26 23:46:42 +0800
commitafd191adba92e3d0a60e2223ffe9217acd149826 (patch)
tree074ebcaf3887b8b23886099578a2b14a6894b07b /pkgs/development/python-modules/jsonrpc-base
parentb619c9b76c808fbb64ff867b2e10c170f5a9a573 (diff)
downloadnixlib-afd191adba92e3d0a60e2223ffe9217acd149826.tar
nixlib-afd191adba92e3d0a60e2223ffe9217acd149826.tar.gz
nixlib-afd191adba92e3d0a60e2223ffe9217acd149826.tar.bz2
nixlib-afd191adba92e3d0a60e2223ffe9217acd149826.tar.lz
nixlib-afd191adba92e3d0a60e2223ffe9217acd149826.tar.xz
nixlib-afd191adba92e3d0a60e2223ffe9217acd149826.tar.zst
nixlib-afd191adba92e3d0a60e2223ffe9217acd149826.zip
jsonrpc-base: init at 1.0
Diffstat (limited to 'pkgs/development/python-modules/jsonrpc-base')
-rw-r--r--pkgs/development/python-modules/jsonrpc-base/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jsonrpc-base/default.nix b/pkgs/development/python-modules/jsonrpc-base/default.nix
new file mode 100644
index 000000000000..01c0c3f4aa18
--- /dev/null
+++ b/pkgs/development/python-modules/jsonrpc-base/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "jsonrpc-base";
+  version = "1.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1dl55n54ha5kf4x6hap2p1k3s4qa4w7g791wp2656rjg2zxfgywk";
+  };
+
+  propagatedBuildInputs = [ ];
+
+  meta = with stdenv.lib; {
+    description = "A JSON-RPC client library base interface";
+    homepage = https://github.com/armills/jsonrpc-base;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ peterhoeg ];
+  };
+}