81047829ea
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
28 lines
868 B
Nix
28 lines
868 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage, pytestCheckHook, eth-hash, eth-typing,
|
|
cytoolz, hypothesis }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "eth-utils";
|
|
version = "2.0.0";
|
|
|
|
# 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 = "sha256-E2vUROc2FcAv00k50YpdxaaYIRDk1yGSPB8cHHw+7Yw=";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook hypothesis ];
|
|
propagatedBuildInputs = [ eth-hash eth-typing cytoolz ];
|
|
|
|
pythonImportsCheck = [ "eth_utils" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|