blob: a9ee409a15aedd6f8b27ae93f6c93361e49cc408 (
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
44
45
46
47
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
aiohttp,
pytz,
voluptuous,
}:
buildPythonPackage rec {
pname = "pygti";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "vigonotion";
repo = "pygti";
tag = version;
hash = "sha256-2T4Yw4XEOkv+IWyB4Xa2dPu929VH0tLeUjQ5S8EVXz0=";
};
build-system = [ setuptools-scm ];
dependencies = [
aiohttp
pytz
voluptuous
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [
"pygti.auth"
"pygti.exceptions"
"pygti.gti"
];
meta = {
changelog = "https://github.com/vigonotion/pygti/releases/tag/${src.tag}";
description = "Access public transport information in Hamburg, Germany";
homepage = "https://github.com/vigonotion/pygti";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|