From d8240e40eee1eb72ec65d8fa0f432ad36f33a7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 4 Mar 2026 10:58:29 -0800 Subject: [PATCH] python3Packages.pylitterbot: 2025.0.0 -> 2025.1.0 Diff: https://github.com/natekspencer/pylitterbot/compare/v2025.0.0...2025.1.0 Changelog: https://github.com/natekspencer/pylitterbot/releases/tag/2025.1.0 --- .../python-modules/pylitterbot/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/pylitterbot/default.nix b/pkgs/development/python-modules/pylitterbot/default.nix index db243048c9f7..ea704454d4d2 100644 --- a/pkgs/development/python-modules/pylitterbot/default.nix +++ b/pkgs/development/python-modules/pylitterbot/default.nix @@ -5,30 +5,30 @@ buildPythonPackage, deepdiff, fetchFromGitHub, - poetry-core, - poetry-dynamic-versioning, + hatchling, pycognito, pyjwt, pytest-aiohttp, pytest-freezegun, pytestCheckHook, + uv-dynamic-versioning, }: buildPythonPackage rec { pname = "pylitterbot"; - version = "2025.0.0"; + version = "2025.1.0"; pyproject = true; src = fetchFromGitHub { owner = "natekspencer"; repo = "pylitterbot"; - tag = "v${version}"; - hash = "sha256-Rr7QseViy6i13QbZVb8BxMWDsE9meG4NqT5B1Z+TZbc="; + tag = version; + hash = "sha256-pQnrmH/mfh7cwEnL/qoG3dN638HsP9w5zK0CgarGstE="; }; build-system = [ - poetry-core - poetry-dynamic-versioning + hatchling + uv-dynamic-versioning ]; dependencies = [