From ca0411c207781d3287e6841cbeaa7dca18305f6f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Oct 2025 19:16:20 +0200 Subject: [PATCH 1/2] python313Packages.pylitterbot: 2024.2.4 -> 2024.2.6 Diff: https://github.com/natekspencer/pylitterbot/compare/v2024.2.4...v2024.2.6 Changelog: https://github.com/natekspencer/pylitterbot/releases/tag/v2024.2.6 --- pkgs/development/python-modules/pylitterbot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pylitterbot/default.nix b/pkgs/development/python-modules/pylitterbot/default.nix index ceef62732855..e8059f9c5e83 100644 --- a/pkgs/development/python-modules/pylitterbot/default.nix +++ b/pkgs/development/python-modules/pylitterbot/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "pylitterbot"; - version = "2024.2.4"; + version = "2024.2.6"; pyproject = true; disabled = pythonOlder "3.10"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "natekspencer"; repo = "pylitterbot"; tag = "v${version}"; - hash = "sha256-/GN2b4rlE6j60O5ZxH8I58qwcZewAYJu0EHwQ7mrdBY="; + hash = "sha256-oQuEo0np+e+HfsQoWbv84BNpxNJQO3ZjocaCfllqkts="; }; pythonRelaxDeps = [ "deepdiff" ]; From f73d0a2095c9c1eba2d310ff9f460609bf6f26db Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Oct 2025 19:18:25 +0200 Subject: [PATCH 2/2] python313Packages.pylitterbot: modernize --- pkgs/development/python-modules/pylitterbot/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pylitterbot/default.nix b/pkgs/development/python-modules/pylitterbot/default.nix index e8059f9c5e83..33590b96fecc 100644 --- a/pkgs/development/python-modules/pylitterbot/default.nix +++ b/pkgs/development/python-modules/pylitterbot/default.nix @@ -12,7 +12,6 @@ pytest-aiohttp, pytest-freezegun, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { @@ -20,8 +19,6 @@ buildPythonPackage rec { version = "2024.2.6"; pyproject = true; - disabled = pythonOlder "3.10"; - src = fetchFromGitHub { owner = "natekspencer"; repo = "pylitterbot"; @@ -52,11 +49,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pylitterbot" ]; - meta = with lib; { + meta = { description = "Modulefor controlling a Litter-Robot"; homepage = "https://github.com/natekspencer/pylitterbot"; changelog = "https://github.com/natekspencer/pylitterbot/releases/tag/${src.tag}"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; }