blob: 06b1f608c579a66b2748851783cb55bb0e85612a (
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
53
54
55
|
{
lib,
aiohttp,
aresponses,
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
inflection,
pyjwt,
pytest-asyncio,
pytestCheckHook,
python-dateutil,
}:
buildPythonPackage rec {
pname = "python-smarttub";
version = "0.0.46";
pyproject = true;
src = fetchFromGitHub {
owner = "mdz";
repo = "python-smarttub";
tag = "v${version}";
hash = "sha256-Hx5WVQWB5zk22jExFeka3fzfexBFC/ZWjM7S5WWxxXU=";
};
build-system = [
hatch-vcs
hatchling
];
dependencies = [
aiohttp
inflection
pyjwt
python-dateutil
];
nativeCheckInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "smarttub" ];
meta = {
description = "Python API for SmartTub enabled hot tubs";
homepage = "https://github.com/mdz/python-smarttub";
changelog = "https://github.com/mdz/python-smarttub/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|