Merge branch 'master' into staging-next

K900 9e0000be c1dce2f6

+140 -59
+2 -2
pkgs/applications/audio/easyabc/default.nix
··· 7 7 packageOverrides = self: super: { 8 8 # currently broken with 4.2.1 9 9 # https://github.com/jwdj/EasyABC/issues/75 10 - wxPython_4_2 = super.wxPython_4_2.overrideAttrs (args: rec { 10 + wxpython = super.wxpython.overrideAttrs (args: rec { 11 11 version = "4.2.0"; 12 12 src = fetchPypi { 13 13 inherit version; ··· 32 32 33 33 propagatedBuildInputs = with python.pkgs; [ 34 34 cx-freeze 35 - wxPython_4_2 35 + wxpython 36 36 pygame 37 37 ]; 38 38
+2 -2
pkgs/applications/editors/okteta/default.nix
··· 4 4 5 5 mkDerivation rec { 6 6 pname = "okteta"; 7 - version = "0.26.14"; 7 + version = "0.26.15"; 8 8 9 9 src = fetchurl { 10 10 url = "mirror://kde/stable/okteta/${version}/src/${pname}-${version}.tar.xz"; 11 - sha256 = "sha256-2bvspG3lecKlcN/+YPRmFKQCu/jhckafeSo272iE+9k="; 11 + sha256 = "sha256-BTNQDvcGjBJG4hj1N69yboNth4/ydeOS7T2KiqbPfGM="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ qtscript extra-cmake-modules kdoctools ];
+1 -1
pkgs/applications/gis/grass/default.nix
··· 54 54 libmysqlclient # for `mysql_config` 55 55 netcdf # for `nc-config` 56 56 pkg-config 57 - ] ++ (with python3Packages; [ python-dateutil numpy wxPython_4_2 ]); 57 + ] ++ (with python3Packages; [ python-dateutil numpy wxpython ]); 58 58 59 59 buildInputs = [ 60 60 blas
+1 -1
pkgs/applications/graphics/displaycal/default.nix
··· 27 27 propagatedBuildInputs = with python3.pkgs; [ 28 28 build 29 29 certifi 30 - wxPython_4_2 30 + wxpython 31 31 dbus-python 32 32 distro 33 33 numpy
+1 -1
pkgs/applications/graphics/inkscape/extensions/silhouette/default.nix
··· 43 43 python3.pkgs.lxml 44 44 python3.pkgs.inkex 45 45 python3.pkgs.matplotlib 46 - python3.pkgs.wxPython_4_2 46 + python3.pkgs.wxpython 47 47 python3.pkgs.xmltodict 48 48 ]; 49 49
+1 -1
pkgs/applications/misc/loxodo/default.nix
··· 13 13 14 14 patches = [ ./wxpython.patch ]; 15 15 16 - propagatedBuildInputs = with python3.pkgs; [ six wxPython_4_2 ]; 16 + propagatedBuildInputs = with python3.pkgs; [ six wxpython ]; 17 17 18 18 postInstall = '' 19 19 mv $out/bin/loxodo.py $out/bin/loxodo
+1 -1
pkgs/applications/misc/meerk40t/default.nix
··· 33 33 pyserial 34 34 pyusb 35 35 setuptools 36 - wxPython_4_2 36 + wxpython 37 37 ]; 38 38 39 39 preFixup = ''
+1 -1
pkgs/applications/misc/metamorphose2/default.nix
··· 29 29 ''; 30 30 31 31 nativeBuildInputs = [ makeWrapper ]; 32 - propagatedBuildInputs = with python3.pkgs; [ mutagen wxPython_4_2 pillow six ]; 32 + propagatedBuildInputs = with python3.pkgs; [ mutagen wxpython pillow six ]; 33 33 34 34 makeFlags = [ "PREFIX=$(out)" ]; 35 35
+1 -1
pkgs/applications/misc/playonlinux/default.nix
··· 61 61 libs = pkgs: lib.makeLibraryPath [ xorg.libX11 libGL ]; 62 62 63 63 python = python3.withPackages(ps: with ps; [ 64 - wxPython_4_2 64 + wxpython 65 65 setuptools 66 66 natsort 67 67 ]);
+1 -1
pkgs/applications/misc/printrun/default.nix
··· 21 21 nativeBuildInputs = [ glib wrapGAppsHook ]; 22 22 23 23 propagatedBuildInputs = with python3Packages; [ 24 - appdirs cython dbus-python numpy six wxPython_4_2 psutil pyglet pyopengl pyserial cffi cairosvg lxml 24 + appdirs cython dbus-python numpy six wxpython psutil pyglet pyopengl pyserial cffi cairosvg lxml 25 25 ]; 26 26 27 27 # pyglet.canvas.xlib.NoSuchDisplayException: Cannot connect to "None"
+1 -1
pkgs/applications/office/timeline/default.nix
··· 20 20 nativeBuildInputs = [ python3.pkgs.wrapPython copyDesktopItems wrapGAppsHook ]; 21 21 22 22 pythonPath = with python3.pkgs; [ 23 - wxPython_4_2 23 + wxpython 24 24 humblewx 25 25 icalendar 26 26 markdown
+1 -1
pkgs/applications/radio/chirp/default.nix
··· 29 29 pyserial 30 30 requests 31 31 six 32 - wxPython_4_2 32 + wxpython 33 33 yattag 34 34 ]; 35 35
+1 -1
pkgs/applications/radio/quisk/default.nix
··· 23 23 24 24 propagatedBuildInputs = with python3.pkgs; [ 25 25 pyusb 26 - wxPython_4_2 26 + wxpython 27 27 ]; 28 28 29 29 doCheck = false;
+1 -1
pkgs/applications/science/electronics/kicad/default.nix
··· 118 118 119 119 wxGTK = wxGTK32; 120 120 python = python3; 121 - wxPython = python.pkgs.wxPython_4_2; 121 + wxPython = python.pkgs.wxpython; 122 122 addonPath = "addon.zip"; 123 123 addonsDrvs = map (pkg: pkg.override { inherit addonPath python3; }) addons; 124 124
+2 -2
pkgs/applications/science/robotics/mavproxy/default.nix
··· 1 1 { stdenv, lib, buildPythonApplication, fetchPypi, lxml, matplotlib, numpy 2 - , opencv4, pymavlink, pyserial, setuptools, wxPython_4_2, billiard 2 + , opencv4, pymavlink, pyserial, setuptools, wxpython, billiard 3 3 , gnureadline }: 4 4 5 5 buildPythonApplication rec { ··· 24 24 pymavlink 25 25 pyserial 26 26 setuptools 27 - wxPython_4_2 27 + wxpython 28 28 ] ++ lib.optionals stdenv.isDarwin [ billiard gnureadline ]; 29 29 30 30 # No tests
+1 -1
pkgs/by-name/as/asn1editor/package.nix
··· 18 18 propagatedBuildInputs = with python3.pkgs; [ 19 19 asn1tools 20 20 coverage 21 - wxPython_4_2 21 + wxpython 22 22 ]; 23 23 24 24 pythonImportsCheck = [ "asn1editor" ];
+2 -2
pkgs/by-name/ki/kikit/default.nix
··· 12 12 , markdown2 13 13 , pytestCheckHook 14 14 , commentjson 15 - , wxPython_4_2 15 + , wxpython 16 16 , pcbnew-transition 17 17 , pybars3 18 18 , versioneer ··· 42 42 markdown2 43 43 commentjson 44 44 # https://github.com/yaqwsx/KiKit/issues/575 45 - wxPython_4_2 45 + wxpython 46 46 pcbnew-transition 47 47 pybars3 48 48 # https://github.com/yaqwsx/KiKit/issues/574
+53
pkgs/by-name/la/labwc-menu-generator/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , glib 5 + , perl 6 + , pkg-config 7 + , unstableGitUpdater 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "labwc-menu-generator"; 12 + version = "unstable-2023-10-31"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "labwc"; 16 + repo = "labwc-menu-generator"; 17 + rev = "d7c81071f8b121ef83da32ae3fa16155d1a2ced9"; 18 + hash = "sha256-gZ0TuSVJwcKW4orawSmRQvoCfrpb8yLXlv81qCR86MU="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + glib 27 + ]; 28 + 29 + nativeCheckInputs = [ 30 + perl 31 + ]; 32 + 33 + doCheck = true; 34 + 35 + strictDeps = true; 36 + 37 + installPhase = '' 38 + runHook preInstall 39 + install -Dm755 labwc-menu-generator -t $out/bin 40 + runHook postInstall 41 + ''; 42 + 43 + passthru.updateScript = unstableGitUpdater { }; 44 + 45 + meta = { 46 + homepage = "https://github.com/labwc/labwc-menu-generator"; 47 + description = "Menu generator for labwc"; 48 + mainProgram = "labwc-menu-generator"; 49 + license = lib.licenses.gpl2Only; 50 + platforms = lib.platforms.unix; 51 + maintainers = with lib.maintainers; [ AndersonTorres romildo ]; 52 + }; 53 + })
+3 -3
pkgs/by-name/qr/qrtool/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "qrtool"; 11 - version = "0.10.1"; 11 + version = "0.10.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sorairolake"; 15 15 repo = "qrtool"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-96k3VgxVGuKPLA4rD9B20AigFW03YvedT04UUzzmX38="; 17 + sha256 = "sha256-caQoV0qAj2VXbEaYHsGOqCZCVyb4s1JJbBl7H0X5xEI="; 18 18 }; 19 19 20 - cargoHash = "sha256-nAfW66vasnR0JHhz7n1XGA+OpPavOnGB6D6TfK9cr9Y="; 20 + cargoHash = "sha256-V9TopADUGBR0MdOTIq1Tiee3NEzLa76zRq5bjULoLVI="; 21 21 22 22 nativeBuildInputs = [ asciidoctor installShellFiles ]; 23 23
+5 -3
pkgs/development/python-modules/ax/default.nix
··· 15 15 , pyfakefs 16 16 , pytestCheckHook 17 17 , yappi 18 + , pyre-extensions 18 19 }: 19 20 20 21 buildPythonPackage rec { 21 22 pname = "ax"; 22 - version = "0.3.5"; 23 + version = "0.3.6"; 23 24 format = "pyproject"; 24 25 25 26 src = fetchFromGitHub { 26 27 owner = "facebook"; 27 28 repo = pname; 28 - rev = "refs/tags/${version}"; 29 - hash = "sha256-AMnE5bHBUyfMGBxfhkByHY0dC/ft1/QLZgRGk0TyN10="; 29 + rev = version; 30 + hash = "sha256-5f2VpOFDRz6YzxvxFYWMu8hljkMVbBsyULYVreUxYRU="; 30 31 }; 31 32 32 33 nativeBuildInputs = [ ··· 42 43 pandas 43 44 plotly 44 45 typeguard 46 + pyre-extensions 45 47 ]; 46 48 47 49 checkInputs = [
+2 -2
pkgs/development/python-modules/botorch/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , gpytorch 5 - , linear_operator 5 + , linear-operator 6 6 , multipledispatch 7 7 , pyro-ppl 8 8 , setuptools ··· 33 33 34 34 propagatedBuildInputs = [ 35 35 gpytorch 36 - linear_operator 36 + linear-operator 37 37 multipledispatch 38 38 pyro-ppl 39 39 scipy
+2 -2
pkgs/development/python-modules/gpytorch/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , linear_operator 4 + , linear-operator 5 5 , scikit-learn 6 6 , setuptools 7 7 , setuptools-scm ··· 29 29 ]; 30 30 31 31 propagatedBuildInputs = [ 32 - linear_operator 32 + linear-operator 33 33 scikit-learn 34 34 torch 35 35 ];
+2 -2
pkgs/development/python-modules/humblewx/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , buildPythonPackage 4 - , wxPython_4_2 4 + , wxpython 5 5 , python 6 6 }: 7 7 ··· 17 17 sha256 = "0fv8gwlbcj000qq34inbwgxf0xgibs590dsyqnw0mmyb7f1iq210"; 18 18 }; 19 19 20 - propagatedBuildInputs = [ wxPython_4_2 ]; 20 + propagatedBuildInputs = [ wxpython ]; 21 21 22 22 checkPhase = '' 23 23 runHook preCheck
+2 -2
pkgs/development/python-modules/linear_operator/default.nix pkgs/development/python-modules/linear-operator/default.nix
··· 11 11 }: 12 12 13 13 buildPythonPackage rec { 14 - pname = "linear_operator"; 14 + pname = "linear-operator"; 15 15 version = "0.5.2"; 16 16 format = "pyproject"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "cornellius-gp"; 20 - repo = pname; 20 + repo = "linear_operator"; 21 21 rev = "refs/tags/v${version}"; 22 22 hash = "sha256-OuE6jx9Q4IU+b2a+mrglRdBOReN1tt/thetNXxwk1GI="; 23 23 };
+3 -2
pkgs/development/python-modules/trezor_agent/default.nix pkgs/development/python-modules/trezor-agent/default.nix
··· 14 14 }: 15 15 16 16 buildPythonPackage rec { 17 - pname = "trezor_agent"; 17 + pname = "trezor-agent"; 18 18 version = "0.12.0"; 19 19 format = "setuptools"; 20 20 21 21 src = fetchPypi { 22 - inherit pname version; 22 + pname = "trezor_agent"; 23 + inherit version; 23 24 hash = "sha256-4IylpUvXZYAXFkyFGNbN9iPTsHff3M/RL2Eq9f7wWFU="; 24 25 }; 25 26
pkgs/development/python-modules/wxPython/4.2-ctypes.patch pkgs/development/python-modules/wxpython/4.2-ctypes.patch
+3 -2
pkgs/development/python-modules/wxPython/4.2.nix pkgs/development/python-modules/wxpython/4.2.nix
··· 40 40 }: 41 41 42 42 buildPythonPackage rec { 43 - pname = "wxPython"; 43 + pname = "wxpython"; 44 44 version = "4.2.1"; 45 45 format = "other"; 46 46 disabled = pythonOlder "3.7"; 47 47 48 48 src = fetchPypi { 49 - inherit pname version; 49 + pname = "wxPython"; 50 + inherit version; 50 51 hash = "sha256-5I3iEaZga/By7D+neHcda3RsALf0uXDrWHKN31bRPVw="; 51 52 }; 52 53
+9 -1
pkgs/development/tools/symfony-cli/default.nix
··· 4 4 , nix-update-script 5 5 , testers 6 6 , symfony-cli 7 + , nssTools 8 + , makeBinaryWrapper 7 9 }: 8 10 9 11 buildGoModule rec { ··· 25 27 "-X main.channel=stable" 26 28 ]; 27 29 30 + buildInputs = [ makeBinaryWrapper ]; 31 + 28 32 postInstall = '' 29 - mv $out/bin/symfony-cli $out/bin/symfony 33 + mkdir $out/libexec 34 + mv $out/bin/symfony-cli $out/libexec/symfony 35 + 36 + makeBinaryWrapper $out/libexec/symfony $out/bin/symfony \ 37 + --prefix PATH : ${lib.makeBinPath [ nssTools ]} 30 38 ''; 31 39 32 40 # Tests requires network access
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 6 6 # NOTE: When updating these, please also take a look at the changes done to 7 7 # kernel config in the xanmod version commit 8 8 ltsVariant = { 9 - version = "6.1.69"; 10 - hash = "sha256-/uk2sS7g4REPtR/LSc7djjoc//m6QvrXfHO4OemQcy8="; 9 + version = "6.1.70"; 10 + hash = "sha256-SXXg0fIfqtOwjRC0m963rbB5J42T+Q/1iB5ombtLn0s="; 11 11 variant = "lts"; 12 12 }; 13 13 14 14 mainVariant = { 15 - version = "6.6.8"; 16 - hash = "sha256-TtWTYuT3GMnQy1shkF+HTgv4Z1OSOLh4RXfG+Xj0n3M="; 15 + version = "6.6.9"; 16 + hash = "sha256-ugcmPGnOHRfkNu15v0hX56TPt9LN4B73yzwByaKvLUQ="; 17 17 variant = "main"; 18 18 }; 19 19
+16 -4
pkgs/servers/home-automation/evcc/default.nix
··· 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 4 , fetchNpmDeps 5 + , fetchpatch 5 6 , cacert 6 7 , go 7 8 , git ··· 16 17 17 18 buildGoModule rec { 18 19 pname = "evcc"; 19 - version = "0.123.2"; 20 + version = "0.123.7"; 20 21 21 22 src = fetchFromGitHub { 22 23 owner = "evcc-io"; 23 - repo = pname; 24 + repo = "evcc"; 24 25 rev = version; 25 - hash = "sha256-iGt3j8q8dpQLUIHHnGHCgraPETk9GL9t/ygBZtPG7yM="; 26 + hash = "sha256-I8qcKrCuiUpDdsWDMiEZdo+PBkMELo5V6GW+nKFaD3Y="; 26 27 }; 27 28 28 - vendorHash = "sha256-rhGMN5v+JzNg1p2GptomDDtqS7M4EafROXXy185qtmU="; 29 + patches = [ 30 + (fetchpatch { 31 + # https://github.com/evcc-io/evcc/pull/11547 32 + name = "evcc-mockgen.patch"; 33 + url = "https://github.com/evcc-io/evcc/commit/5ec02a9dba79a733f71fc02a9552eb01e4e08f0b.patch"; 34 + hash = "sha256-uxKdtwdhUcMFCMkG756OD9aSMP9rdOL4Tg0HBWwp3kw="; 35 + }) 36 + ]; 37 + 38 + vendorHash = "sha256-FKF6+64mjrKgzFAb+O0QCURieOoRB//QNbpMFMcNG8s="; 29 39 30 40 npmDeps = fetchNpmDeps { 31 41 inherit src; ··· 45 55 cacert 46 56 mockgen 47 57 ]; 58 + 59 + inherit patches; 48 60 49 61 preBuild = '' 50 62 make assets
+3 -3
pkgs/servers/zigbee2mqtt/default.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "zigbee2mqtt"; 11 - version = "1.35.0"; 11 + version = "1.35.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Koenkk"; 15 15 repo = "zigbee2mqtt"; 16 16 rev = version; 17 - hash = "sha256-0swbnT+iQqX1jQ1INJmG2zSgiu4pM7zu0ieBkpUE9zg="; 17 + hash = "sha256-ZOIV7PLBnPbisIStC+MNMZgf+Hw/+n4lONpgomRkZEE="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-VXdu5IKUao0mFO0Wzev99LmhZSaGn/04cSexa6EHSrg="; 20 + npmDepsHash = "sha256-2WSuc9bmt5kK477c3AMOLFguvXZ2Nl+Qb67j5k7eL3o="; 21 21 22 22 nodejs = nodejs_18; 23 23
+1 -1
pkgs/tools/games/mymcplus/default.nix
··· 21 21 22 22 propagatedBuildInputs = with pythonPackages; [ 23 23 pyopengl 24 - wxPython_4_2 24 + wxpython 25 25 ]; 26 26 27 27 meta = with lib; {
+1 -1
pkgs/tools/misc/woeusb-ng/default.nix
··· 35 35 parted 36 36 grub2 37 37 termcolor 38 - wxPython_4_2 38 + wxpython 39 39 six 40 40 ]; 41 41
+1
pkgs/top-level/aliases.nix
··· 1016 1016 tokodon = plasma5Packages.tokodon; 1017 1017 tor-browser-bundle-bin = tor-browser; # Added 2023-09-23 1018 1018 transfig = fig2dev; # Added 2022-02-15 1019 + trezor_agent = trezor-agent; # Added 2024-01-07 1019 1020 trustedGrub = throw "trustedGrub has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 1020 1021 trustedGrub-for-HP = throw "trustedGrub-for-HP has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 1021 1022 tvbrowser-bin = tvbrowser; # Added 2023-03-02
+1 -1
pkgs/top-level/all-packages.nix
··· 14054 14054 buildGoModule = buildGo120Module; 14055 14055 }; 14056 14056 14057 - trezor_agent = with python3Packages; toPythonApplication trezor_agent; 14057 + trezor-agent = with python3Packages; toPythonApplication trezor-agent; 14058 14058 14059 14059 trezor-suite = callPackage ../applications/blockchains/trezor-suite { }; 14060 14060
+5 -2
pkgs/top-level/python-aliases.nix
··· 245 245 ledger_agent = ledger-agent; # Added 2024-01-07 246 246 lektor = throw "lektor has been promoted to a top-level attribute"; # added 2023-08-01 247 247 line_profiler = line-profiler; # added 2023-11-04 248 + linear_operator = linear-operator; # added 2024-01-07 248 249 livestreamer = throw "'livestreamer' has been removed, as it unmaintained. A currently maintained fork is 'streamlink'."; # added 2023-11-14 249 250 livestreamer-curses = throw "'livestreamer-curses' has been removed as it, and livestreamer itself are unmaintained."; # added 2023-11-14 250 251 logilab_astng = throw "logilab-astng has not been released since 2013 and is unmaintained"; # added 2022-11-29 ··· 472 473 thumborPexif = throw "thumborPexif has been removed, because it was unused."; # added 2024-01-07 473 474 torrent_parser = torrent-parser; # added 2023-11-04 474 475 transip = throw "transip has been removed because it is no longer maintained. TransIP SOAP V5 API was marked as deprecated"; # added 2023-02-27 476 + trezor_agent = trezor-agent; # Added 2024-01-07 475 477 tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19 476 478 tvdb_api = tvdb-api; # added 2023-10-20 477 479 tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05 ··· 492 494 webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29 493 495 websocket_client = websocket-client; # added 2021-06-15 494 496 word2vec = throw "word2vec has been removed because it is abandoned"; # added 2023-05-22 495 - wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxPython_4_2 instead"; # added 2023-03-19 496 - wxPython_4_1 = throw "wxPython_4_1 has been removed, use wxPython_4_2 instead"; # added 2023-03-19 497 + wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxpython instead"; # added 2023-03-19 498 + wxPython_4_1 = throw "wxPython_4_1 has been removed, use wxpython instead"; # added 2023-03-19 499 + wxPython_4_2 = wxpython; # added 2024-01-07 497 500 WSME = wsme; # added 2023-02-19 498 501 x11_hash = x11-hash; # added 2023-11-05 499 502 xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
+3 -3
pkgs/top-level/python-packages.nix
··· 6502 6502 6503 6503 limnoria = callPackage ../development/python-modules/limnoria { }; 6504 6504 6505 - linear_operator = callPackage ../development/python-modules/linear_operator { }; 6505 + linear-operator = callPackage ../development/python-modules/linear-operator { }; 6506 6506 6507 6507 linecache2 = callPackage ../development/python-modules/linecache2 { }; 6508 6508 ··· 14551 14551 14552 14552 treq = callPackage ../development/python-modules/treq { }; 14553 14553 14554 - trezor_agent = callPackage ../development/python-modules/trezor_agent { }; 14554 + trezor-agent = callPackage ../development/python-modules/trezor-agent { }; 14555 14555 14556 14556 trezor = callPackage ../development/python-modules/trezor { }; 14557 14557 ··· 16121 16121 16122 16122 wurlitzer = callPackage ../development/python-modules/wurlitzer { }; 16123 16123 16124 - wxPython_4_2 = callPackage ../development/python-modules/wxPython/4.2.nix { 16124 + wxpython = callPackage ../development/python-modules/wxpython/4.2.nix { 16125 16125 wxGTK = pkgs.wxGTK32.override { 16126 16126 withWebKit = true; 16127 16127 };