pythonPackages.eth-typing: init at 1.1.0

This commit is contained in:
Jaakko Luttinen 2018-08-26 14:11:02 +03:00
parent c44504410b
commit 541a13ca0a
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964
2 changed files with 37 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -1657,6 +1657,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 { };