1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 requests,
7 xmltodict,
8 urllib3,
9}:
10
11buildPythonPackage rec {
12 pname = "greenwavereality";
13 version = "0.5.1";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-bNTO9qHoOe3A7TYiUwLBVq4eWyGoIfCoguizM1hKk/Y=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [
24 requests
25 xmltodict
26 urllib3
27 ];
28
29 # Module has no tests
30 doCheck = false;
31
32 pythonImportsCheck = [ "greenwavereality" ];
33
34 meta = {
35 description = "Control of Greenwave Reality Lights";
36 homepage = "https://github.com/dfiel/greenwavereality";
37 license = lib.licenses.mit;
38 maintainers = [ lib.maintainers.jamiemagee ];
39 };
40}