summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2026-01-18 00:54:32 +0000
committerGitHub <noreply@github.com>2026-01-18 00:54:32 +0000
commitd094341ead84de0ded8cba5f7af961b49f8bf045 (patch)
treec697183d1b69f6c207cd7e7b44c993e68ae2c2a7
parent45973b20defefe1866dfa1543b6d3f7bf7b1558d (diff)
parent0d321ec153a6a66b4966bffccd3fdabfa2c036f3 (diff)
python3Packages.aiolifx-themes: 1.0.2 -> 1.0.3 (#481186)
-rw-r--r--pkgs/development/python-modules/aiolifx-themes/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/aiolifx-themes/default.nix b/pkgs/development/python-modules/aiolifx-themes/default.nix
index 3f518fe0f54d..517e10840aba 100644
--- a/pkgs/development/python-modules/aiolifx-themes/default.nix
+++ b/pkgs/development/python-modules/aiolifx-themes/default.nix
@@ -11,9 +11,9 @@
pythonOlder,
}:
-buildPythonPackage rec {
+buildPythonPackage (finalAttrs: {
pname = "aiolifx-themes";
- version = "1.0.2";
+ version = "1.0.3";
pyproject = true;
disabled = pythonOlder "3.12";
@@ -21,8 +21,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Djelibeybi";
repo = "aiolifx-themes";
- tag = "v${version}";
- hash = "sha256-uJQWKgmlNwuvIXfK6fFHngaSncgaDJJ36vkOLGWB/lY=";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-Y92ze+zrkz+fxQNFFSR5V9sPJMN0/dfIRwT6UhXo0+U=";
};
build-system = [ poetry-core ];
@@ -41,8 +41,8 @@ buildPythonPackage rec {
meta = {
description = "Color themes for LIFX lights running on aiolifx";
homepage = "https://github.com/Djelibeybi/aiolifx-themes";
- changelog = "https://github.com/Djelibeybi/aiolifx-themes/releases/tag/${src.tag}";
+ changelog = "https://github.com/Djelibeybi/aiolifx-themes/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lukegb ];
};
-}
+})