mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 06:44:06 +00:00
python312Packages.pyvicare-neo: init at 0.3.0
This commit is contained in:
parent
e6cdf02736
commit
8430312fac
43
pkgs/development/python-modules/pyvicare-neo/default.nix
Normal file
43
pkgs/development/python-modules/pyvicare-neo/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user