From 40e4c56cd502ccd508996c1dd17fdb5e93776b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 3 Feb 2026 21:43:48 -0800 Subject: [PATCH] python3Packages.aiosyncthing: 0.6.3 -> 0.7.1 Diff: https://github.com/zhulik/aiosyncthing/compare/v0.6.3...v0.7.1 Changelog: https://github.com/zhulik/aiosyncthing/releases/tag/v0.7.1 --- pkgs/development/python-modules/aiosyncthing/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiosyncthing/default.nix b/pkgs/development/python-modules/aiosyncthing/default.nix index 88cfe9f96ebe..801e8a05e27c 100644 --- a/pkgs/development/python-modules/aiosyncthing/default.nix +++ b/pkgs/development/python-modules/aiosyncthing/default.nix @@ -3,6 +3,7 @@ aiohttp, aioresponses, buildPythonPackage, + deprecated, fetchFromGitHub, expects, pytest-asyncio, @@ -15,20 +16,21 @@ buildPythonPackage rec { pname = "aiosyncthing"; - version = "0.6.3"; + version = "0.7.1"; pyproject = true; src = fetchFromGitHub { owner = "zhulik"; repo = "aiosyncthing"; tag = "v${version}"; - hash = "sha256-vn8S2/kRW5C2Hbes9oLM4LGm1jWWK0zeLdujR14y6EI="; + hash = "sha256-0jx61zs6yQqAIwSOO1zCUOkoZES+K/POtIGoWzr29bI="; }; build-system = [ setuptools ]; dependencies = [ aiohttp + deprecated yarl ];