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

python312Packages.dirigera: 1.0.12 -> 1.0.14

authored by Weijia Wang and committed by GitHub ab1590d3 7341b702

+15 -20
+15 -20
pkgs/development/python-modules/dirigera/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pydantic 5 - , pytestCheckHook 6 - , pythonOlder 7 - , requests 8 - , setuptools 9 - , websocket-client 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pydantic, 6 + pytestCheckHook, 7 + pythonOlder, 8 + requests, 9 + setuptools, 10 + websocket-client, 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "dirigera"; 14 - version = "1.0.12"; 15 + version = "1.0.14"; 15 16 pyproject = true; 16 17 17 18 disabled = pythonOlder "3.7"; ··· 20 21 owner = "Leggin"; 21 22 repo = "dirigera"; 22 23 rev = "refs/tags/v${version}"; 23 - hash = "sha256-e8kbMP5ih7MBozFbylLEBR9DrS894X4xZh62OLLSgFw="; 24 + hash = "sha256-FsW7ewKAvIONOjEXIOq7/GqOs564PpeMFKjS4crJtJ0="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 29 dependencies = [ 31 30 pydantic ··· 33 32 websocket-client 34 33 ]; 35 34 36 - nativeCheckInputs = [ 37 - pytestCheckHook 38 - ]; 35 + nativeCheckInputs = [ pytestCheckHook ]; 39 36 40 - pythonImportsCheck = [ 41 - "dirigera" 42 - ]; 37 + pythonImportsCheck = [ "dirigera" ]; 43 38 44 39 meta = with lib; { 45 40 description = "Module for controlling the IKEA Dirigera Smart Home Hub";