blob: 1a43cfdedbabb017cd74866bf491fb309e4bfcc7 (
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
|
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
websockets,
}:
buildPythonPackage rec {
pname = "pyhomee";
version = "1.3.8";
pyproject = true;
src = fetchFromGitHub {
owner = "Taraman17";
repo = "pyHomee";
tag = "v${version}";
hash = "sha256-7Op+l6gIyPPE4DX3XGi1hpgWRllOTbaqqUuop7JDMhY=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
websockets
];
pythonImportsCheck = [ "pyHomee" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/Taraman17/pyHomee/releases/tag/${src.tag}";
description = "Python library to interact with homee";
homepage = "https://github.com/Taraman17/pyHomee";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|