python3Packages.rlp: 4.0.0 -> 4.1.0

This commit is contained in:
Ben Siraphob
2025-07-30 00:28:47 -07:00
parent 82e15e2dba
commit dc47ec03b4
@@ -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";