about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-26 23:12:33 +0100
committerGitHub <noreply@github.com>2023-11-26 23:12:33 +0100
commit64b86e474114f7c6135fbb58fd4753595a0b1510 (patch)
treeb6759b2475ab6379cad519d71793893b9b11186f /pkgs
parent3897a84362caccc27ddb3b5e818e29a3c20a1a91 (diff)
parentfcbd335763a98bfff039a691c20992827217ed18 (diff)
Merge pull request #270178 from fabaff/aiolifx-themes-bump
python311Packages.aiolifx-themes: 0.4.9 -> 0.4.10
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/aiolifx-themes/default.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/aiolifx-themes/default.nix b/pkgs/development/python-modules/aiolifx-themes/default.nix
index 08015af0f7adf..aeac811c8f5af 100644
--- a/pkgs/development/python-modules/aiolifx-themes/default.nix
+++ b/pkgs/development/python-modules/aiolifx-themes/default.nix
@@ -12,8 +12,8 @@
 
 buildPythonPackage rec {
   pname = "aiolifx-themes";
-  version = "0.4.9";
-  format = "pyproject";
+  version = "0.4.10";
+  pyproject = true;
 
   disabled = pythonOlder "3.9";
 
@@ -21,7 +21,7 @@ buildPythonPackage rec {
     owner = "Djelibeybi";
     repo = "aiolifx-themes";
     rev = "refs/tags/v${version}";
-    hash = "sha256-8t0yRia/grSSEqySV57QoB3lgU9iwqiVOvVLE5Jd2pM=";
+    hash = "sha256-zpUvbG/89MeZ50565MVjehSTnLmOKScBA07yBjZ521I=";
   };
 
   prePatch = ''
@@ -31,11 +31,6 @@ buildPythonPackage rec {
       --replace "typer = " "# unused: typer = "
   '';
 
-  postPatch = ''
-    substituteInPlace pyproject.toml \
-      --replace 'aiolifx = "^0.8.6"' 'aiolifx = "*"'
-  '';
-
   nativeBuildInputs = [
     poetry-core
   ];