about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-25 09:05:21 +0100
committerGitHub <noreply@github.com>2023-11-25 09:05:21 +0100
commitf58ab8c2a596adb2bb701316eb56290499210d60 (patch)
tree1064e46f7631077f76d2b53afc3c98ebae8ffac7 /pkgs
parent86a8472db9c125fef4da159e7d0e90dbcb739873 (diff)
parent6c79332fb82683cf72bb9a7d4cb4026bf9ea1f3c (diff)
Merge pull request #269744 from fabaff/ledfx-bump
ledfx: 2.0.78 -> 2.0.80
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/ledfx/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/applications/audio/ledfx/default.nix b/pkgs/applications/audio/ledfx/default.nix
index d0cafaaf7f02c..54563b207f054 100644
--- a/pkgs/applications/audio/ledfx/default.nix
+++ b/pkgs/applications/audio/ledfx/default.nix
@@ -5,12 +5,12 @@
 
 python3.pkgs.buildPythonPackage rec {
   pname = "ledfx";
-  version = "2.0.78";
-  format = "setuptools";
+  version = "2.0.80";
+  pyproject= true;
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-IalfA/nfQrnE90ycOnPEZ4A/L8rwi08ECNA/8YxeAgQ=";
+    hash = "sha256-vwLk3EpXqUSAwzY2oX0ZpXrmH2cT0GdYdL/Mifav6mU=";
   };
 
   postPatch = ''
@@ -20,6 +20,10 @@ python3.pkgs.buildPythonPackage rec {
       --replace "~=" ">="
   '';
 
+  nativeBuildInputs = with python3.pkgs; [
+    poetry-core
+  ];
+
   propagatedBuildInputs = with python3.pkgs; [
     aiohttp
     aiohttp-cors