python310Packages.eth-abi: 3.0.0 -> 3.0.1

This commit is contained in:
Sandro Jäckel 2022-09-15 23:52:59 +02:00 committed by Martin Weinelt
parent 4a1bbf8de5
commit 3e6c255b32

View File

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "eth-abi";
version = "3.0.0";
version = "3.0.1";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ethereum";
repo = "eth-abi";
rev = "v${version}";
sha256 = "sha256-qiuyGVOy+n8l3jSqwMGnBXcDrOxIiJ0lNP4lq/EQEhU=";
sha256 = "sha256-xrZpT/9zwDtjSwSPDDse+Aq8plPm26OR/cIrliZUpLY=";
};
postPatch = ''
@ -33,6 +33,9 @@ buildPythonPackage rec {
parsimonious
];
# lots of: TypeError: isinstance() arg 2 must be a type or tuple of types
doCheck = false;
checkInputs = [
hypothesis
pytestCheckHook