base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / networking / apc-temp-fetch / default.nix
blob84d1db515da17070ce8c5c87e28f684dcd1d74f0
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , pythonOlder
5 , requests
6 , setuptools
7 }:
9 buildPythonApplication rec {
10   pname = "apc-temp-fetch";
11   version = "0.0.2";
12   pyproject = true;
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     pname = "APC-Temp-fetch";
18     inherit version;
19     hash = "sha256-lXGj/xrOkdMMYvuyVVSCojjQlzISFUT14VTn//iOARo=";
20   };
22   build-system = [
23     setuptools
24   ];
26   dependencies = [
27     requests
28   ];
30   pythonImportsCheck = [
31     "APC_Temp_fetch"
32   ];
34   meta = with lib; {
35     description = "unified temperature fetcher interface to several UPS network adapters";
36     homepage = "https://github.com/YZITE/APC_Temp_fetch";
37     license = licenses.asl20;
38     maintainers = [ ];
39   };