···11+{ lib22+, aiohttp33+, buildPythonPackage44+, fetchPypi55+, geopy66+, pythonOlder77+}:88+99+buildPythonPackage rec {1010+ pname = "pyipma";1111+ version = "2.1.5";1212+ disabled = pythonOlder "3.7";1313+1414+ # Request for GitHub releases, https://github.com/dgomes/pyipma/issues/101515+ src = fetchPypi {1616+ inherit pname version;1717+ sha256 = "0hq5dasqpsn64x2sf6a28hdmysygmcdq4in6s08w97jfvwc6xmym";1818+ };1919+2020+ propagatedBuildInputs = [2121+ aiohttp2222+ geopy2323+ ];2424+2525+ # Project has no tests included in the PyPI releases2626+ doCheck = false;2727+2828+ pythonImportsCheck = [ "pyipma" ];2929+3030+ meta = with lib; {3131+ description = "Python library to retrieve information from Instituto Português do Mar e Atmosfera";3232+ homepage = "https://github.com/dgomes/pyipma";3333+ license = with licenses; [ mit ];3434+ maintainers = with maintainers; [ fab ];3535+ };3636+}