Skip to content

Commit

Permalink
pythonPackages.eth-typing: init at 1.1.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 541a13c)
  • Loading branch information
jluttine authored and samueldr committed Sep 13, 2018
1 parent 735b1e1 commit 923a6b2
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-typing/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, pytest }:

buildPythonPackage rec {
pname = "eth-typing";
version = "1.3.0";

# Tests are missing from the PyPI source tarball so let's use GitHub
# https://github.com/ethereum/eth-typing/issues/8
src = fetchFromGitHub {
owner = "ethereum";
repo = pname;
rev = "v${version}";
sha256 = "0703z7vlsfa3dvgcq22f9rzmj0svyp2a8wc7h73d0aac28ydhpv9";
};

# setuptools-markdown uses pypandoc which is broken at the moment
preConfigure = ''
substituteInPlace setup.py --replace \'setuptools-markdown\' ""
'';

disabled = pythonOlder "3.5";

checkInputs = [ pytest ];

checkPhase = ''
pytest .
'';

meta = {
description = "Common type annotations for Ethereum Python packages";
homepage = https://github.com/ethereum/eth-typing;
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 @@ -1655,6 +1655,8 @@ in {

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

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

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

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

0 comments on commit 923a6b2

Please sign in to comment.