11 buildPythonPackage rec {
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-WFTx5u85Gp+jQPWS3BTk1Pky07C2fVAzwrG/c3hSRzM=";
25 build-system = [ setuptools ];
27 nativeCheckInputs = [ pytestCheckHook ];
29 dependencies = [ typing-extensions ];
31 pythonImportsCheck = [ "eth_typing" ];
34 description = "Common type annotations for Ethereum Python packages";
35 homepage = "https://github.com/ethereum/eth-typing";
36 changelog = "https://github.com/ethereum/eth-typing/blob/v${version}/docs/release_notes.rst";
37 license = licenses.mit;
38 maintainers = with maintainers; [ siraben ];