summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2018-08-26 14:12:06 +0300
committerJaakko Luttinen <jaakko.luttinen@iki.fi>2018-09-12 08:44:18 +0300
commit9f8e6148c5da6101bd534c3d68549ab00946b441 (patch)
tree494b5122af6954e718368b5b1bfe924c47d435e4 /pkgs/development/python-modules
parent541a13ca0ae42dbdea9369c585b51b23b5a660b3 (diff)
downloadnixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.tar
nixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.tar.gz
nixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.tar.bz2
nixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.tar.lz
nixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.tar.xz
nixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.tar.zst
nixlib-9f8e6148c5da6101bd534c3d68549ab00946b441.zip
pythonPackages.eth-utils: init at 1.2.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/eth-utils/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/eth-utils/default.nix b/pkgs/development/python-modules/eth-utils/default.nix
new file mode 100644
index 000000000000..cae3f34f0c9f
--- /dev/null
+++ b/pkgs/development/python-modules/eth-utils/default.nix
@@ -0,0 +1,35 @@
+{ lib, fetchFromGitHub, buildPythonPackage, pytest, eth-hash, eth-typing,
+  cytoolz, hypothesis }:
+
+buildPythonPackage rec {
+  pname = "eth-utils";
+  version = "1.2.1";
+
+  # Tests are missing from the PyPI source tarball so let's use GitHub
+  # https://github.com/ethereum/eth-utils/issues/130
+  src = fetchFromGitHub {
+    owner = "ethereum";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0g8f5vdjh7qd8kgsqqd9qkm6m79rx3w9yp0rf9vpdsv3xfzrkh1w";
+  };
+
+  checkInputs = [ pytest hypothesis ];
+  propagatedBuildInputs = [ eth-hash eth-typing cytoolz ];
+
+  # setuptools-markdown uses pypandoc which is broken at the moment
+  preConfigure = ''
+    substituteInPlace setup.py --replace \'setuptools-markdown\' ""
+  '';
+
+  checkPhase = ''
+    pytest .
+  '';
+
+  meta = {
+    description = "Common utility functions for codebases which interact with ethereum";
+    homepage = https://github.com/ethereum/eth-utils;
+    license = lib.licenses.mit;
+    maintainers = with lib.maintainers; [ jluttine ];
+  };
+}