summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-27 08:54:58 -0500
committerGitHub <noreply@github.com>2022-11-27 08:54:58 -0500
commit56bb505989ec3a0eb843a2c4414e4516b4793058 (patch)
tree613a6ff1afb4fa3d3e4b7ee742b9f9b975a41007
parent74474d6bcf515a47e57332db0d3d0a2d96e39c6c (diff)
parent0178ea18a06cfc12412eaed63ba8def75d1cb670 (diff)
downloadnixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.tar
nixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.tar.gz
nixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.tar.bz2
nixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.tar.lz
nixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.tar.xz
nixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.tar.zst
nixpkgs-56bb505989ec3a0eb843a2c4414e4516b4793058.zip
Merge pull request #203218 from fabaff/aiolifx-themes-bump
python310Packages.aiolifx-themes: 0.2.0 -> 0.2.1 
-rw-r--r--pkgs/development/python-modules/aiolifx-themes/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiolifx-themes/default.nix b/pkgs/development/python-modules/aiolifx-themes/default.nix
index 4aeec041c04..ebcf0d91384 100644
--- a/pkgs/development/python-modules/aiolifx-themes/default.nix
+++ b/pkgs/development/python-modules/aiolifx-themes/default.nix
@@ -12,7 +12,7 @@
 
 buildPythonPackage rec {
   pname = "aiolifx-themes";
-  version = "0.2.0";
+  version = "0.2.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.9";
@@ -20,8 +20,8 @@ buildPythonPackage rec {
   src = fetchFromGitHub {
     owner = "Djelibeybi";
     repo = "aiolifx-themes";
-    rev = "v${version}";
-    hash = "sha256:17498vdg8i20hk4i8hzc67qaj206ik3s1zn1k70plsjr9zlgs6vz";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-sWEWfsew758jl6vLB7AQQ3nA83BFHF7YPy1ZaoPt45Y=";
   };
 
   prePatch = ''
@@ -52,6 +52,7 @@ buildPythonPackage rec {
   meta = with lib; {
     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/v${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ lukegb ];
   };