about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2024-01-08 00:51:35 +0300
committerK900 <me@0upti.me>2024-01-08 00:51:35 +0300
commit9e0000be281b9aa98d57c5d1741fc1442922f1d0 (patch)
tree46331aefd0f8545532096aacb3d55fabc6eda4ce /pkgs/applications/audio
parentc1dce2f654efc915df00a308c30574e27dca78ef (diff)
parent8694fb4187be13dec82b75ccef37fc5509f12e43 (diff)
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/easyabc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/easyabc/default.nix b/pkgs/applications/audio/easyabc/default.nix
index 54b1f31d1c11d..edf6e3596aa2a 100644
--- a/pkgs/applications/audio/easyabc/default.nix
+++ b/pkgs/applications/audio/easyabc/default.nix
@@ -7,7 +7,7 @@ let
     packageOverrides = self: super: {
       # currently broken with 4.2.1
       # https://github.com/jwdj/EasyABC/issues/75
-      wxPython_4_2 = super.wxPython_4_2.overrideAttrs (args: rec {
+      wxpython = super.wxpython.overrideAttrs (args: rec {
         version = "4.2.0";
         src = fetchPypi {
           inherit version;
@@ -32,7 +32,7 @@ in python.pkgs.buildPythonApplication {
 
   propagatedBuildInputs = with python.pkgs; [
     cx-freeze
-    wxPython_4_2
+    wxpython
     pygame
   ];