{ lib , buildPythonPackage , fetchPypi }: buildPythonPackage rec { pname = "types-toml"; version = "0.10.1"; format = "setuptools"; src = fetchPypi { inherit pname version; sha256 = "1jqh0vki1hccj391gnxpblim429sj56npgq2z749f8v9ay6qy7sw"; }; # Module doesn't have tests doCheck = false; pythonImportsCheck = [ "toml-stubs" ]; meta = with lib; { description = "Typing stubs for toml"; homepage = "https://github.com/python/typeshed"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }