summary refs log tree commit diff
path: root/pkgs/development/python-modules/pykostalpiko/default.nix
blob: 1b36374b20b05fbeccfdfc465713d368e7bec4f5 (plain) (blame)
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
42
{ lib
, aiohttp
, buildPythonPackage
, click
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pykostalpiko";
  version = "1.1.1-1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "Florian7843";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-0szkxR19iSWWpPAEo3wriMmI5TFI6YeYRTj86b4rKlU=";
  };

  propagatedBuildInputs = [
    aiohttp
    click
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "pykostalpiko"
  ];

  meta = with lib; {
    description = "Library and CLI-tool to fetch the data from a Kostal Piko inverter";
    homepage = "https://github.com/Florian7843/pykostalpiko";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}