python3Packages.eth-abi: 5.1.0 -> 5.2.0

Changed files
+5 -2
pkgs
development
python-modules
eth-abi
+5 -2
pkgs/development/python-modules/eth-abi/default.nix
···
pytestCheckHook,
pytest-xdist,
eth-hash,
+
pydantic,
}:
buildPythonPackage rec {
pname = "eth-abi";
-
version = "5.1.0";
+
version = "5.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ethereum";
repo = "eth-abi";
tag = "v${version}";
-
hash = "sha256-D3aGMx2oZFttwQ90ouwQbbRelCb2bvyQgvamKweX9Nw=";
+
hash = "sha256-/tyGm/lH72oZEKfTd25t+k0y3TuAZQg+hUABT4YCP2g=";
};
build-system = [ setuptools ];
···
hypothesis
pytestCheckHook
pytest-xdist
+
pydantic
]
++ eth-hash.optional-dependencies.pycryptodome;
disabledTests = [
# boolean list representation changed
"test_get_abi_strategy_returns_certain_strategies_for_known_type_strings"
+
"test_install_local_wheel"
];
pythonImportsCheck = [ "eth_abi" ];