about summary refs log tree commit diff
path: root/pkgs/tools/networking/apc-temp-fetch/default.nix
blob: 84d1db515da17070ce8c5c87e28f684dcd1d74f0 (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
{ lib
, buildPythonApplication
, fetchPypi
, pythonOlder
, requests
, setuptools
}:

buildPythonApplication rec {
  pname = "apc-temp-fetch";
  version = "0.0.2";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    pname = "APC-Temp-fetch";
    inherit version;
    hash = "sha256-lXGj/xrOkdMMYvuyVVSCojjQlzISFUT14VTn//iOARo=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    requests
  ];

  pythonImportsCheck = [
    "APC_Temp_fetch"
  ];

  meta = with lib; {
    description = "unified temperature fetcher interface to several UPS network adapters";
    homepage = "https://github.com/YZITE/APC_Temp_fetch";
    license = licenses.asl20;
    maintainers = [ ];
  };
}