blob: 0eccbed7cb73d28028d26368790b9f2b55a4edab (
plain)
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
|
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
mashumaro,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "python-google-weather-api";
version = "0.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "tronikos";
repo = "python-google-weather-api";
tag = "v${version}";
hash = "sha256-5ljKaIwG78oufb0iRaqTY46wxelAiuQUvhmRbZWo5Fk=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
mashumaro
];
pythonImportsCheck = [ "google_weather_api" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/tronikos/python-google-weather-api/releases/tag/${src.tag}";
description = "Python client library for the Google Weather API";
homepage = "https://github.com/tronikos/python-google-weather-api";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|