From 9fa8e635a793e422ff057f13da04063ce5e7d12b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 1 May 2026 21:27:19 -0700 Subject: [PATCH] python3Packages.actron-neo-api: 0.5.5 -> 0.5.11 Diff: https://github.com/kclif9/actronneoapi/compare/v0.5.5...v0.5.11 Changelog: https://github.com/kclif9/actronneoapi/releases/tag/v0.5.6 https://github.com/kclif9/actronneoapi/releases/tag/v0.5.7 https://github.com/kclif9/actronneoapi/releases/tag/v0.5.8 https://github.com/kclif9/actronneoapi/releases/tag/v0.5.9 https://github.com/kclif9/actronneoapi/releases/tag/v0.5.10 https://github.com/kclif9/actronneoapi/releases/tag/v0.5.11 --- .../python-modules/actron-neo-api/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/actron-neo-api/default.nix b/pkgs/development/python-modules/actron-neo-api/default.nix index 91c56ade8efa..ee9c51f11d14 100644 --- a/pkgs/development/python-modules/actron-neo-api/default.nix +++ b/pkgs/development/python-modules/actron-neo-api/default.nix @@ -1,34 +1,36 @@ { aiohttp, + aiomqtt, buildPythonPackage, fetchFromGitHub, + hatch-vcs, + hatchling, lib, pydantic, pytest-asyncio, pytestCheckHook, - setuptools, - setuptools-scm, }: buildPythonPackage rec { pname = "actron-neo-api"; - version = "0.5.5"; + version = "0.5.11"; pyproject = true; src = fetchFromGitHub { owner = "kclif9"; repo = "actronneoapi"; tag = "v${version}"; - hash = "sha256-bBPhwiJQYDBEPZKA1Cq94X9LYAmBkOWCI+4afrQntmw="; + hash = "sha256-1cXYMYS8quBVtUbv+Wrcvm13I47VuSKTHwwlQKvGcRI="; }; build-system = [ - setuptools - setuptools-scm + hatch-vcs + hatchling ]; dependencies = [ aiohttp + aiomqtt pydantic ];