blob: 15ed82eef4fc2ff7f94e0d830b93655359f13c8f (
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
56
|
{
lib,
aiohttp,
buildPythonPackage,
dnspython,
fetchFromGitHub,
pytest-asyncio_0,
pytestCheckHook,
pythonAtLeast,
setuptools,
}:
buildPythonPackage rec {
pname = "pykaleidescape";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "SteveEasley";
repo = "pykaleidescape";
tag = "v${version}";
hash = "sha256-HhHlgQ94aPac6zRgXBSsHxXuAj2OnGdWkJHMOqTwKcI=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
aiohttp
dnspython
];
nativeCheckInputs = [
pytest-asyncio_0
pytestCheckHook
];
pythonImportsCheck = [ "kaleidescape" ];
disabledTests = [
# Test requires network access
"test_resolve_succeeds"
]
++ lib.optionals (pythonAtLeast "3.12") [
# stuck in EpollSelector.poll()
"test_manual_disconnect"
"test_concurrency"
];
meta = {
description = "Module for controlling Kaleidescape devices";
homepage = "https://github.com/SteveEasley/pykaleidescape";
changelog = "https://github.com/SteveEasley/pykaleidescape/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|