59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
aiohttp,
|
||
|
aioresponses,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
freezegun,
|
||
|
mock,
|
||
|
geopy,
|
||
|
pytest-asyncio,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyipma";
|
||
|
version = "3.0.7";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "dgomes";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-a6UXc8XLZhSyUb8AxnXoPgiyP004GQfuapRmVeOaFQU=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
aiohttp
|
||
|
geopy
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
aioresponses
|
||
|
freezegun
|
||
|
mock
|
||
|
pytest-asyncio
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "pyipma" ];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# Tests require network access
|
||
|
"tests/test_auxiliar.py"
|
||
|
"tests/test_location.py"
|
||
|
"tests/test_sea_forecast.py"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library to retrieve information from Instituto Português do Mar e Atmosfera";
|
||
|
homepage = "https://github.com/dgomes/pyipma";
|
||
|
changelog = "https://github.com/dgomes/pyipma/releases/tag/${version}";
|
||
|
license = with licenses; [ mit ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|