From 63e021e4c7ddfb2fe4810699caf77e539a0d57bf Mon Sep 17 00:00:00 2001 From: Timo Gottszky Date: Thu, 11 Jun 2026 14:28:50 +0200 Subject: [PATCH] python3Packages.pyupdate: drop --- .../python-modules/pyupdate/default.nix | 34 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 -- 3 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 pkgs/development/python-modules/pyupdate/default.nix diff --git a/pkgs/development/python-modules/pyupdate/default.nix b/pkgs/development/python-modules/pyupdate/default.nix deleted file mode 100644 index 2cb035efde43..000000000000 --- a/pkgs/development/python-modules/pyupdate/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - isPy3k, - requests, -}: - -buildPythonPackage rec { - pname = "pyupdate"; - version = "1.4.0"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - sha256 = "016f50853b4d72e5ddb963b042caa45fb60fa4d3f13aee819d829af21e55ef07"; - }; - - propagatedBuildInputs = [ requests ]; - - # As of 0.2.16, pyupdate is intimately tied to Home Assistant which is py3 only - disabled = !isPy3k; - - # no tests - doCheck = false; - - meta = { - # This description is terrible, but it's what upstream uses. - description = "Package to update stuff"; - homepage = "https://github.com/ludeeus/pyupdate"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ peterhoeg ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 1a4d9b53fafa..9a0e7fb18bb6 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -513,6 +513,7 @@ mapAliases { pytorchWithCuda = throw "'pytorchWithCuda' has been renamed to/replaced by 'torchWithCuda'"; # Converted to throw 2025-10-29 pytorchWithoutCuda = throw "'pytorchWithoutCuda' has been renamed to/replaced by 'torchWithoutCuda'"; # Converted to throw 2025-10-29 pytwitchapi = throw "'pytwitchapi' has been renamed to/replaced by 'twitchapi'"; # Converted to throw 2025-10-29 + pyupdate = throw "'pyupdate' has been removed because it was unused and unmaintained upstream"; # added 2026-06-11 pyvicare-neo = throw "'pyvicare-neo' has been renamed to/replaced by 'pyvicare'"; # Converted to throw 2025-10-29 PyVirtualDisplay = throw "'PyVirtualDisplay' has been renamed to/replaced by 'pyvirtualdisplay'"; # Converted to throw 2025-10-29 pyvoro = throw "pyvoro has been removed because it is unmaintained upstream and has been marked as broken since 2023."; # Added 2025-10-11 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ac9275d3b255..839b475be7c6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16508,8 +16508,6 @@ self: super: with self; { pyunpack = callPackage ../development/python-modules/pyunpack { }; - pyupdate = callPackage ../development/python-modules/pyupdate { }; - pyupgrade = callPackage ../development/python-modules/pyupgrade { }; pyuptimerobot = callPackage ../development/python-modules/pyuptimerobot { };