From c5dd7d749d5d260fa445fd41ce69876954b78677 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Tue, 22 Jul 2025 21:58:38 -0700 Subject: [PATCH] python3Packages.hexbytes: 1.2.0 -> 1.3.1 --- pkgs/development/python-modules/hexbytes/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hexbytes/default.nix b/pkgs/development/python-modules/hexbytes/default.nix index 0e36d028b6fa..ea1e5692a54d 100644 --- a/pkgs/development/python-modules/hexbytes/default.nix +++ b/pkgs/development/python-modules/hexbytes/default.nix @@ -7,11 +7,12 @@ hypothesis, pytestCheckHook, pythonOlder, + pydantic, }: buildPythonPackage rec { pname = "hexbytes"; - version = "1.2.0"; + version = "1.3.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,7 +20,7 @@ buildPythonPackage rec { owner = "ethereum"; repo = "hexbytes"; tag = "v${version}"; - hash = "sha256-8st1nQiGApt+aNl8/cftYk0ZzA+MxbLyGi53UWUlAjM="; + hash = "sha256-xYXxlyVGdsksxZJtSpz1V3pj4NL7IzX0gaQeCoiHr8g="; }; build-system = [ setuptools ]; @@ -28,8 +29,11 @@ buildPythonPackage rec { eth-utils hypothesis pytestCheckHook + pydantic ]; + disabledTests = [ "test_install_local_wheel" ]; + pythonImportsCheck = [ "hexbytes" ]; meta = with lib; {