python3Packages.rlp: 4.0.0 -> 4.1.0

Changed files
+6 -2
pkgs
development
python-modules
+6 -2
pkgs/development/python-modules/rlp/default.nix
···
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 ];
···
nativeCheckInputs = [
hypothesis
pytestCheckHook
+
pydantic
];
pythonImportsCheck = [ "rlp" ];
+
+
disabledTests = [ "test_install_local_wheel" ];
meta = with lib; {
description = "RLP serialization library";