depot/third_party/nixpkgs/pkgs/development/python-modules/pyipma/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

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 ];
};
}