summary refs log tree commit diff
path: root/pkgs/development/python-modules/envoy-reader/default.nix
blob: 1a60d40c70cda654a5a417859c00b2d2b5dc1641 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{ lib
, beautifulsoup4
, buildPythonPackage
, envoy-utils
, fetchFromGitHub
, fetchpatch
, httpx
, pyjwt
, pytest-asyncio
, pytestCheckHook
, pytest-raises
, pythonOlder
, respx
}:

buildPythonPackage rec {
  pname = "envoy-reader";
  version = "0.21.3";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "jesserizzo";
    repo = "envoy_reader";
    rev = version;
    sha256 = "sha256-aIpZ4ln4L57HwK8H0FqsyNnXosnAp3ingrJI6/MPS90=";
  };

  propagatedBuildInputs = [
    beautifulsoup4
    envoy-utils
    httpx
    pyjwt
  ];

  nativeCheckInputs = [
    pytest-raises
    pytest-asyncio
    pytestCheckHook
    respx
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace "pytest-runner>=5.2" "" \
      --replace "pyjwt==2.1.0" "pyjwt>=2.1.0"
  '';

  pythonImportsCheck = [
    "envoy_reader"
  ];

  meta = with lib; {
    description = "Python module to read from Enphase Envoy units";
    homepage = "https://github.com/jesserizzo/envoy_reader";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}