From 2e2f2cf6ed34105513f12b4e638ddb40d9bf851f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 19 Jun 2026 14:26:58 -0700 Subject: [PATCH] python3Packages.aiocomelit: 2.0.4 -> 2.0.7 Diff: https://github.com/chemelli74/aiocomelit/compare/v2.0.4...v2.0.7 Changelog: https://github.com/chemelli74/aiocomelit/blob/v2.0.7/CHANGELOG.md --- .../python-modules/aiocomelit/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/aiocomelit/default.nix b/pkgs/development/python-modules/aiocomelit/default.nix index 5fbb76a80004..af9957be5a5d 100644 --- a/pkgs/development/python-modules/aiocomelit/default.nix +++ b/pkgs/development/python-modules/aiocomelit/default.nix @@ -1,40 +1,42 @@ { lib, aiohttp, + aioresponses, + anyio, buildPythonPackage, - colorlog, fetchFromGitHub, orjson, pint, - pytest-cov-stub, pytestCheckHook, setuptools, + writableTmpDirAsHomeHook, }: buildPythonPackage (finalAttrs: { pname = "aiocomelit"; - version = "2.0.4"; + version = "2.0.7"; pyproject = true; src = fetchFromGitHub { owner = "chemelli74"; repo = "aiocomelit"; tag = "v${finalAttrs.version}"; - hash = "sha256-E5hI3PGNmJxly5RvOsV4DsGxOLsdfYppcMSTcoX0ohQ="; + hash = "sha256-T48aRtuF9eNrW5L97CGkjc2PCdRzbuGCvhdWCuqe7yk="; }; build-system = [ setuptools ]; dependencies = [ aiohttp - colorlog orjson pint ]; nativeCheckInputs = [ - pytest-cov-stub + aioresponses + anyio pytestCheckHook + writableTmpDirAsHomeHook ]; pythonImportsCheck = [ "aiocomelit" ];