tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / tools / networking / apc-temp-fetch / default.nix
blobb25672dd19e17c5549b324ef4ea994df5f500ef7
2   lib,
3   buildPythonApplication,
4   fetchPypi,
5   pythonOlder,
6   requests,
7   setuptools,
8 }:
10 buildPythonApplication rec {
11   pname = "apc-temp-fetch";
12   version = "0.0.2";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     pname = "APC-Temp-fetch";
19     inherit version;
20     hash = "sha256-lXGj/xrOkdMMYvuyVVSCojjQlzISFUT14VTn//iOARo=";
21   };
23   build-system = [
24     setuptools
25   ];
27   dependencies = [
28     requests
29   ];
31   pythonImportsCheck = [
32     "APC_Temp_fetch"
33   ];
35   meta = with lib; {
36     description = "unified temperature fetcher interface to several UPS network adapters";
37     homepage = "https://github.com/YZITE/APC_Temp_fetch";
38     license = licenses.asl20;
39     maintainers = [ ];
40   };