blob: 9759e99e7247dad128fa84ef45182b91cbf62535 (
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
48
49
50
51
52
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
poetry-dynamic-versioning,
iso4217,
pytz,
}:
buildPythonPackage rec {
pname = "pyefergy";
version = "22.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tkdrob";
repo = "pyefergy";
tag = "v${version}";
hash = "sha256-4M3r/+C42X95/7BGZAJbkXKKFEkGzLlvX0Ynv+eL8qc=";
};
build-system = [
poetry-core
poetry-dynamic-versioning
];
pythonRemoveDeps = [
"codecov"
"types-pytz"
];
dependencies = [
aiohttp
iso4217
pytz
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "pyefergy" ];
meta = {
changelog = "https://github.com/tkdrob/pyefergy/releases/tag/v${version}";
description = "Python API library for Efergy energy meters";
homepage = "https://github.com/tkdrob/pyefergy";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|