blob: 33304c21908cf60015d7dbc58a575a0a1e5137ff (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "lightwave2";
version = "0.8.23";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-umhFqeX16c6o006MU9/9h4EnqcX7v8C5q3XjxYgi+xk=";
};
propagatedBuildInputs = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "lightwave2" ];
meta = {
description = "Library to interact with LightWaveRF 2nd Gen lights and switches";
homepage = "https://github.com/bigbadblunt/lightwave2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|