depot/third_party/nixpkgs/pkgs/development/python-modules/oemthermostat/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

48 lines
923 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, setuptools-scm
}:
buildPythonPackage rec {
pname = "oemthermostat";
version = "1.1.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Cadair";
repo = "openenergymonitor_thermostat";
rev = "v${version}";
sha256 = "vrMw3/X8MtejO1WyUA1DOlfVCPTCPgcK5p3+OlTWcM4=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
requests
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"oemthermostat"
];
meta = with lib; {
description = "Python module to interact with OpenEnergyMonitor thermostats";
homepage = "https://github.com/Cadair/openenergymonitor_thermostat";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}