22017988c6
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
76 lines
1.5 KiB
Nix
76 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pytz
|
|
, requests
|
|
, requests-mock
|
|
, typing-extensions
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "meteofrance-api";
|
|
version = "1.0.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hacf-fr";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-X8f0z9ZPXH7Wc3GqHmPptxpNxbHeezdOzw4gZCprumU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
# Doesn't work with poetry-core at the moment
|
|
poetry
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pytz
|
|
requests
|
|
urllib3
|
|
] ++ lib.optionals (pythonOlder "3.7") [
|
|
typing-extensions
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
postPatch = ''
|
|
# https://github.com/hacf-fr/meteofrance-api/pull/378
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'pytz = ">=2020.4,<2022.0"' 'pytz = ">=2020.4,<2023.0"'
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"meteofrance_api"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_currentphenomenons"
|
|
"test_forecast"
|
|
"test_full_with_coastal_bulletint"
|
|
"test_fulls"
|
|
"test_no_rain_expected"
|
|
"test_picture_of_the_day"
|
|
"test_places"
|
|
"test_rain"
|
|
"test_session"
|
|
"test_workflow"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to access information from the Meteo-France API";
|
|
homepage = "https://github.com/hacf-fr/meteofrance-api";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|