1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
freezegun,
metar,
pytest-aiohttp,
pytest-asyncio,
pytest-cov,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
tenacity,
}:
buildPythonPackage rec {
pname = "pynws";
version = "1.8.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "MatthewFlamm";
repo = "pynws";
rev = "refs/tags/v${version}";
hash = "sha256-3QKdZ7hg7HfQ56xHbkhXCtlBq4JCwfXdZiTctI3OVl0=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
aiohttp
metar
];
optional-dependencies.retry = [ tenacity ];
nativeCheckInputs = [
freezegun
pytest-aiohttp
pytest-asyncio
pytest-cov
pytestCheckHook
] ++ lib.flatten (lib.attrValues optional-dependencies);
pythonImportsCheck = [ "pynws" ];
meta = with lib; {
description = "Python library to retrieve data from NWS/NOAA";
homepage = "https://github.com/MatthewFlamm/pynws";
changelog = "https://github.com/MatthewFlamm/pynws/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|