about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rlp
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2018-04-13 19:35:29 +0200
committerGabriel Ebner <gebner@gebner.org>2018-04-13 19:35:29 +0200
commit67dbfd3fc177cdc2ec35af1d0ca25460811c16d3 (patch)
tree762a65e6df211b63e42b9745fd4f8cd0297a24b3 /pkgs/development/python-modules/rlp
parent1659a29fef5c725d0d6cc03e5660858fd7509a0a (diff)
pythonPackages.rlp: init at 0.6.0
Diffstat (limited to 'pkgs/development/python-modules/rlp')
-rw-r--r--pkgs/development/python-modules/rlp/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rlp/default.nix b/pkgs/development/python-modules/rlp/default.nix
new file mode 100644
index 0000000000000..6443a4e2bbfe8
--- /dev/null
+++ b/pkgs/development/python-modules/rlp/default.nix
@@ -0,0 +1,21 @@
+{ lib, fetchPypi, buildPythonPackage, pytest }:
+
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "rlp";
+  version = "0.6.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0d3gx4mp8q4z369s5yk1n9c55sgfw9fidbwqxq67d6s7l45rm1w7";
+  };
+
+  buildInputs = [ pytest ];
+
+  meta = {
+    description = "A package for encoding and decoding data in and from Recursive Length Prefix notation";
+    homepage = "https://github.com/ethereum/pyrlp";
+    license = lib.licenses.mit;
+    maintainers = with lib.maintainers; [ gebner ];
+  };
+}