python312Packages.pyvicare-neo: init at 0.3.0

This commit is contained in:
Robert Schütz 2024-08-31 20:59:14 -07:00
parent e6cdf02736
commit 8430312fac
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{
authlib,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
pytestCheckHook,
requests,
types-requests,
}:
buildPythonPackage rec {
pname = "pyvicare-neo";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "CFenner";
repo = "PyViCare";
rev = "refs/tags/v${version}";
hash = "sha256-QjFrBf58uM5OProKsesyY43MuE1MnIVIVqs5rWUTmes=";
};
build-system = [ poetry-core ];
propagatedBuildInputs = [
authlib
requests
types-requests
];
pythonImportsCheck = [ "PyViCare" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
changelog = "https://github.com/CFenner/PyViCare/releases/tag/v${version}";
description = "Library to communicate with the Viessmann ViCare API";
homepage = "https://github.com/CFenner/PyViCare";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -12942,6 +12942,8 @@ self: super: with self; {
pyvicare = callPackage ../development/python-modules/pyvicare { };
pyvicare-neo = callPackage ../development/python-modules/pyvicare-neo { };
pyvirtualdisplay = callPackage ../development/python-modules/pyvirtualdisplay { };
pyvis = callPackage ../development/python-modules/pyvis { };