1{ lib
2, buildPythonPackage
3, fetchPypi
4, prettytable
5, requests
6}:
7
8buildPythonPackage rec {
9 pname = "somecomfort";
10 version = "0.8.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "56e60e4e9f76c12c0c9dd1016e9f1334be6800409e0762f5f143f9069d7292d3";
15 };
16
17 propagatedBuildInputs = [
18 requests
19 prettytable
20 ];
21
22 # tests require network access
23 doCheck = false;
24
25 pythonImportsCheck = [ "somecomfort" ];
26
27 meta = with lib; {
28 description = "Client for Honeywell's US-based cloud devices";
29 homepage = "https://github.com/kk7ds/somecomfort";
30 license = licenses.gpl3Only;
31 maintainers = with maintainers; [ dotlambda ];
32 };
33}