mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
36 lines
1,011 B
Nix
36 lines
1,011 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage, pytest, eth-hash, eth-typing,
|
|
cytoolz, hypothesis }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "eth-utils";
|
|
version = "1.8.4";
|
|
|
|
# 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 = "1hfzb3xz3j50dgp51nx2jssh9j07np24fqmpnyr2ycsll90g1j6q";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|