Merge pull request #301656 from r-ryantm/auto-update/python312Packages.dirigera

python312Packages.dirigera: 1.0.12 -> 1.0.14
This commit is contained in:
Weijia Wang 2024-04-05 03:37:05 +02:00 committed by GitHub
commit ab1590d351
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,17 +1,18 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, pydantic fetchFromGitHub,
, pytestCheckHook pydantic,
, pythonOlder pytestCheckHook,
, requests pythonOlder,
, setuptools requests,
, websocket-client setuptools,
websocket-client,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "dirigera"; pname = "dirigera";
version = "1.0.12"; version = "1.0.14";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,12 +21,10 @@ buildPythonPackage rec {
owner = "Leggin"; owner = "Leggin";
repo = "dirigera"; repo = "dirigera";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-e8kbMP5ih7MBozFbylLEBR9DrS894X4xZh62OLLSgFw="; hash = "sha256-FsW7ewKAvIONOjEXIOq7/GqOs564PpeMFKjS4crJtJ0=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
pydantic pydantic
@ -33,13 +32,9 @@ buildPythonPackage rec {
websocket-client websocket-client
]; ];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "dirigera" ];
"dirigera"
];
meta = with lib; { meta = with lib; {
description = "Module for controlling the IKEA Dirigera Smart Home Hub"; description = "Module for controlling the IKEA Dirigera Smart Home Hub";