From dc47ec03b47b2b2463b7fc9508a4a8bca85b6627 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Mon, 21 Jul 2025 23:29:35 -0700 Subject: [PATCH] python3Packages.rlp: 4.0.0 -> 4.1.0 --- pkgs/development/python-modules/rlp/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/rlp/default.nix b/pkgs/development/python-modules/rlp/default.nix index 3c258f2b8fea..7f1dd65edf4a 100644 --- a/pkgs/development/python-modules/rlp/default.nix +++ b/pkgs/development/python-modules/rlp/default.nix @@ -6,18 +6,19 @@ eth-utils, hypothesis, pytestCheckHook, + pydantic, }: buildPythonPackage rec { pname = "rlp"; - version = "4.0.0"; + version = "4.1.0"; pyproject = true; src = fetchFromGitHub { owner = "ethereum"; repo = "pyrlp"; rev = "v${version}"; - hash = "sha256-cRp+ZOPYs9kcqMKGaiYMOFBY+aPCyFqu+1/5wloLwqU="; + hash = "sha256-moerdcAJXqhlzDnTlvxL3Nzz485tOzJVCPlGrof80eQ="; }; build-system = [ setuptools ]; @@ -27,10 +28,13 @@ buildPythonPackage rec { nativeCheckInputs = [ hypothesis pytestCheckHook + pydantic ]; pythonImportsCheck = [ "rlp" ]; + disabledTests = [ "test_install_local_wheel" ]; + meta = with lib; { description = "RLP serialization library"; homepage = "https://github.com/ethereum/pyrlp";