python3Packages.eth-rlp: 2.1.0 -> 2.2.0

Changed files
+12 -3
pkgs
development
python-modules
eth-rlp
+12 -3
pkgs/development/python-modules/eth-rlp/default.nix
···
pytestCheckHook,
pythonOlder,
rlp,
}:
buildPythonPackage rec {
pname = "eth-rlp";
-
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "ethereum";
repo = "eth-rlp";
rev = "v${version}";
-
hash = "sha256-FTqIutndf+epmO5XNEUoRAUEmn299aTLIZNe5SMcxAQ=";
};
build-system = [ setuptools ];
···
rlp
];
-
nativeCheckInputs = [ pytestCheckHook ] ++ eth-hash.optional-dependencies.pycryptodome;
pythonImportsCheck = [ "eth_rlp" ];
meta = with lib; {
description = "RLP definitions for common Ethereum objects";
···
pytestCheckHook,
pythonOlder,
rlp,
+
pydantic,
}:
buildPythonPackage rec {
pname = "eth-rlp";
+
version = "2.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "ethereum";
repo = "eth-rlp";
rev = "v${version}";
+
hash = "sha256-e8nPfxk3OnFEcPnfTy1IEUCHVId6E/ssNOUeAe331+U=";
};
build-system = [ setuptools ];
···
rlp
];
+
nativeCheckInputs = [
+
pytestCheckHook
+
pydantic
+
]
+
++ eth-hash.optional-dependencies.pycryptodome;
pythonImportsCheck = [ "eth_rlp" ];
+
+
disabledTests = [
+
"test_install_local_wheel"
+
];
meta = with lib; {
description = "RLP definitions for common Ethereum objects";