Unverified Commit 04926621 authored by Thiago Kenji Okada's avatar Thiago Kenji Okada Committed by GitHub
Browse files

python3Packages.pysimplegui: remove (#342332)

parents 7a336347 991b21f9
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  tkinter,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pysimplegui";
  version = "5.0.5";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    pname = "PySimpleGUI";
    inherit version;
    hash = "sha256-4B2LgWmdXAU9ACSR0F26Q9+eP3izRI+p6QS/o9m6Hfk=";
  };

  propagatedBuildInputs = [ tkinter ];

  pythonImportsCheck = [ "PySimpleGUI" ];

  meta = with lib; {
    description = "Python GUIs for Humans";
    homepage = "https://github.com/PySimpleGUI/PySimpleGUI";
    license = licenses.unfree;
    maintainers = with maintainers; [ lucasew ];
    broken = true; # update to v5 broke the package, it now needs rsa and is trying to access an X11 socket?
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -468,6 +468,7 @@ mapAliases ({
  pyruckus = throw "pyruckus has been removed, it was deprecrated in favor of aioruckus."; # added 2023-09-07
  py_scrypt = py-scrypt; # added 2024-01-07
  pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
  pysimplegui = throw "pysimplegui update to v5 broke the package, it now needs a license key to decrypt the source code"; # added 2024-09-16
  pysmart-smartx = pysmart; # added 2021-10-22
  pySmartDL = pysmartdl; # added 2023-10-11
  pysmi-lextudio = pysmi; # added 2024-07-18
+0 −2
Original line number Diff line number Diff line
@@ -12109,8 +12109,6 @@ self: super: with self; {
  pysim = callPackage ../development/python-modules/pysim { };
  pysimplegui = callPackage ../development/python-modules/pysimplegui { };
  pysingleton = callPackage ../development/python-modules/pysingleton { };
  pyslim = callPackage ../development/python-modules/pyslim { };