Skip to content

Commit

Permalink
pythonPackages.eth-utils: init at 1.2.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 9f8e614)
  • Loading branch information
jluttine authored and samueldr committed Sep 13, 2018
1 parent 923a6b2 commit d72f81e
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/eth-utils/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1657,6 +1657,8 @@ in {

eth-typing = callPackage ../development/python-modules/eth-typing { };

eth-utils = callPackage ../development/python-modules/eth-utils { };

jsonrpc-async = callPackage ../development/python-modules/jsonrpc-async { };

jsonrpc-base = callPackage ../development/python-modules/jsonrpc-base { };
Expand Down

0 comments on commit d72f81e

Please sign in to comment.