From 64a7489c3f4cf4507cc3f038e52de69bdf4c7cef Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Tue, 22 Jul 2025 21:54:31 -0700 Subject: [PATCH] python3Packages.eth-keys: 0.6.0 -> 0.7.0 --- pkgs/development/python-modules/eth-keys/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/eth-keys/default.nix b/pkgs/development/python-modules/eth-keys/default.nix index e09926107189..7377ae5f925b 100644 --- a/pkgs/development/python-modules/eth-keys/default.nix +++ b/pkgs/development/python-modules/eth-keys/default.nix @@ -15,18 +15,19 @@ coincurve, eth-hash, isPyPy, + pydantic, }: buildPythonPackage rec { pname = "eth-keys"; - version = "0.6.0"; + version = "0.7.0"; pyproject = true; src = fetchFromGitHub { owner = "ethereum"; repo = "eth-keys"; tag = "v${version}"; - hash = "sha256-HyOfuzwldtqjjowW7HGdZ8RNMXNK3y2NrXUoeMlWJjs="; + hash = "sha256-H/s/D4f4tqP/WTil9uLmFw2Do9sEjMWwEreQEooeszQ="; }; build-system = [ setuptools ]; @@ -42,6 +43,7 @@ buildPythonPackage rec { hypothesis pyasn1 pytestCheckHook + pydantic ] ++ optional-dependencies.coincurve ++ lib.optional (!isPyPy) eth-hash.optional-dependencies.pysha3 @@ -49,6 +51,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "eth_keys" ]; + disabledTests = [ "test_install_local_wheel" ]; + optional-dependencies = { coincurve = [ coincurve ]; };