Merge pull request #211203 from fabaff/eth-typing-fix

python310Packages.eth-typing: 3.1.0 -> 3.2.0
This commit is contained in:
Fabian Affolter 2023-01-22 09:47:04 +01:00 committed by GitHub
commit 7197d2edb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,26 +7,31 @@
buildPythonPackage rec {
pname = "eth-typing";
version = "3.1.0";
version = "3.2.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ethereum";
repo = "eth-typing";
rev = "v${version}";
sha256 = "sha256-Xk/IfW1zuNbGdYAxXTNL9kL+ZW1bWruZ21KFV9+lv/E=";
rev = "refs/tags/v${version}";
hash = "sha256-klN38pIQ9ZOFV7dzXNvylPGfifR8pXRLTJ3VE579AY0=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "eth_typing" ];
pythonImportsCheck = [
"eth_typing"
];
meta = {
meta = with lib; {
description = "Common type annotations for Ethereum Python packages";
homepage = "https://github.com/ethereum/eth-typing";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
changelog = "https://github.com/ethereum/eth-typing/blob/v${version}/docs/release_notes.rst";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}