blob: e74aa63b06eb7b49c4dfd95d77b2ee5de547d737 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
aiohttp,
pycryptodome,
xmltodict,
}:
buildPythonPackage rec {
pname = "panasonic-viera";
version = "0.4.4";
pyproject = true;
src = fetchFromGitHub {
owner = "florianholzapfel";
repo = "panasonic-viera";
tag = version;
hash = "sha256-f/FLM6xoJwRZwq8Q6uf9W+fJN96wE6HvJozaNVmORtg=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
pycryptodome
xmltodict
];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "panasonic_viera" ];
meta = {
changelog = "https://github.com/florianholzapfel/panasonic-viera/releases/tag/${src.tag}";
description = "Library to control Panasonic Viera TVs";
homepage = "https://github.com/florianholzapfel/panasonic-viera";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|