about summary refs log tree commit diff
path: root/pkgs/applications/audio/easyabc
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2024-01-07 13:35:51 +0100
committerMartin Weinelt <mweinelt@users.noreply.github.com>2024-01-07 21:16:47 +0100
commit2adcc8846aa5244c4d87446e0267c9657a6f281b (patch)
treebef644e90889ec542a455d63af1d2b1607068750 /pkgs/applications/audio/easyabc
parente253a1d1746afa9b9a8ef8df68364d863d8897d7 (diff)
python311Packages.wxpython: rename from wxPython_4_2
Diffstat (limited to 'pkgs/applications/audio/easyabc')
-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
   ];