lol
1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "insteon-frontend-home-assistant";
8 version = "0.2.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "sha256-AP8yf2eEBT8LWs03hKihCgbBkS9sEUg5NkYdagFiqwA=";
13 };
14
15 # upstream has no tests
16 doCheck = false;
17
18 pythonImportsCheck = [ "insteon_frontend" ];
19
20 meta = {
21 description = "The Insteon frontend for Home Assistant";
22 homepage = "https://github.com/teharris1/insteon-panel";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [ dotlambda ];
25 };
26}