mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
python3Packages.pysimplegui: remove (#342332)
This commit is contained in:
commit
04926621bb
@ -1,33 +0,0 @@
|
|||||||
{
|
|
||||||
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?
|
|
||||||
};
|
|
||||||
}
|
|
@ -468,6 +468,7 @@ mapAliases ({
|
|||||||
pyruckus = throw "pyruckus has been removed, it was deprecrated in favor of aioruckus."; # added 2023-09-07
|
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
|
py_scrypt = py-scrypt; # added 2024-01-07
|
||||||
pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
|
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
|
pysmart-smartx = pysmart; # added 2021-10-22
|
||||||
pySmartDL = pysmartdl; # added 2023-10-11
|
pySmartDL = pysmartdl; # added 2023-10-11
|
||||||
pysmi-lextudio = pysmi; # added 2024-07-18
|
pysmi-lextudio = pysmi; # added 2024-07-18
|
||||||
|
@ -12109,8 +12109,6 @@ self: super: with self; {
|
|||||||
|
|
||||||
pysim = callPackage ../development/python-modules/pysim { };
|
pysim = callPackage ../development/python-modules/pysim { };
|
||||||
|
|
||||||
pysimplegui = callPackage ../development/python-modules/pysimplegui { };
|
|
||||||
|
|
||||||
pysingleton = callPackage ../development/python-modules/pysingleton { };
|
pysingleton = callPackage ../development/python-modules/pysingleton { };
|
||||||
|
|
||||||
pyslim = callPackage ../development/python-modules/pyslim { };
|
pyslim = callPackage ../development/python-modules/pyslim { };
|
||||||
|
Loading…
Reference in New Issue
Block a user