python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / apc-temp-fetch / default.nix
blob89e452845e56ee057a726f12080c0864b3a9124e
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , pythonOlder
5 , requests
6 }:
8 buildPythonApplication rec {
9   pname = "apc-temp-fetch";
10   version = "0.0.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     pname = "APC-Temp-fetch";
17     inherit version;
18     hash = "sha256-2hNrTrYQadNJWzj7/dDou+a6uI+Ksyrbru9rBqIHXaM=";
19   };
21   propagatedBuildInputs = [
22     requests
23   ];
25   pythonImportsCheck = [
26     "APC_Temp_fetch"
27   ];
29   meta = with lib; {
30     description = "unified temperature fetcher interface to several UPS network adapters";
31     homepage = "https://github.com/YZITE/APC_Temp_fetch";
32     license = licenses.asl20;
33     maintainers = [ maintainers.zseri ];
34   };