python3Packages.eth-typing: 4.0.0 -> 5.0.1 (#360667)

This commit is contained in:
Ben Siraphob
2024-12-02 10:39:16 -05:00
committed by GitHub
@@ -4,12 +4,13 @@
buildPythonPackage,
pythonOlder,
pytestCheckHook,
typing-extensions,
setuptools,
}:
buildPythonPackage rec {
pname = "eth-typing";
version = "4.0.0";
version = "5.0.1";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -18,13 +19,15 @@ buildPythonPackage rec {
owner = "ethereum";
repo = "eth-typing";
rev = "refs/tags/v${version}";
hash = "sha256-JT/2bCPYFSRNt3V7QnHSAJR7HrZ1JpRKdU7gQpoYIn0=";
hash = "sha256-WFTx5u85Gp+jQPWS3BTk1Pky07C2fVAzwrG/c3hSRzM=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
dependencies = [ typing-extensions ];
pythonImportsCheck = [ "eth_typing" ];
meta = with lib; {
@@ -32,6 +35,6 @@ buildPythonPackage rec {
homepage = "https://github.com/ethereum/eth-typing";
changelog = "https://github.com/ethereum/eth-typing/blob/v${version}/docs/release_notes.rst";
license = licenses.mit;
maintainers = [ ];
maintainers = with maintainers; [ siraben ];
};
}