From 28c1cf7691dbf97f0110ad4639698871e25cabde Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 21 Jun 2026 23:33:20 -1000 Subject: [PATCH 1/4] python3Packages.semchunk: 4.0.0 -> 4.1.0 --- pkgs/development/python-modules/semchunk/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/semchunk/default.nix b/pkgs/development/python-modules/semchunk/default.nix index ea7bcd6cb0b5..af5ea515f458 100644 --- a/pkgs/development/python-modules/semchunk/default.nix +++ b/pkgs/development/python-modules/semchunk/default.nix @@ -3,20 +3,19 @@ buildPythonPackage, fetchFromGitHub, hatchling, - mpire, tqdm, }: buildPythonPackage rec { pname = "semchunk"; - version = "4.0.0"; + version = "4.1.0"; pyproject = true; src = fetchFromGitHub { owner = "isaacus-dev"; repo = "semchunk"; tag = "v${version}"; - hash = "sha256-8bceOMMnQ4JsbX7zU5zAoyP8esTm83m/a3VwwnUzCAA="; + hash = "sha256-jQQNb5E/EarsN9OwlF6l8huX06kM2EChfUYW+MM5uxA="; }; build-system = [ @@ -24,7 +23,6 @@ buildPythonPackage rec { ]; dependencies = [ - mpire tqdm ]; From a1714ebd5a045bcfa56c8d583fe922ef05f01e64 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 21 Jun 2026 23:43:49 -1000 Subject: [PATCH 2/4] python3Packages.mpire: remove --- .../python-modules/mpire/default.nix | 84 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 86 deletions(-) delete mode 100644 pkgs/development/python-modules/mpire/default.nix diff --git a/pkgs/development/python-modules/mpire/default.nix b/pkgs/development/python-modules/mpire/default.nix deleted file mode 100644 index 74d5593be8ef..000000000000 --- a/pkgs/development/python-modules/mpire/default.nix +++ /dev/null @@ -1,84 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - setuptools, - wheel, - importlib-resources, - pygments, - tqdm, - flask, - multiprocess, - docutils, - sphinx, - sphinx-autodoc-typehints, - sphinx-rtd-theme, - sphinx-versions, - sphinxcontrib-images, - ipywidgets, - numpy, - rich, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "mpire"; - version = "2.10.2"; - pyproject = true; - - src = fetchFromGitHub { - owner = "sybrenjansen"; - repo = "mpire"; - tag = "v${version}"; - hash = "sha256-6O+k8gSMCu4zhj7KzbsC5UUCU/TG/g3dYsGVuvcy25E="; - }; - - build-system = [ - setuptools - wheel - ]; - - dependencies = [ - importlib-resources - pygments - tqdm - ]; - - optional-dependencies = { - dashboard = [ - flask - ]; - dill = [ - multiprocess - ]; - docs = [ - docutils - sphinx - sphinx-autodoc-typehints - sphinx-rtd-theme - sphinx-versions - sphinxcontrib-images - ]; - testing = [ - ipywidgets - multiprocess - numpy - rich - ]; - }; - - pythonImportsCheck = [ - "mpire" - ]; - - nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.testing; - - enabledTestPaths = [ "tests" ]; - - meta = { - description = "Python package for easy multiprocessing, but faster than multiprocessing"; - homepage = "https://pypi.org/project/mpire/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ booxter ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index e99e55652476..92eebe54156e 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -366,6 +366,7 @@ mapAliases { monarchmoney = throw "'monarchmoney' has been renamed to/replaced by 'monarchmoneycommunity'"; # Added 2026-03-05 monkeytype = throw "'monkeytype' has been removed as it was unmaintained upstream"; # Added 2026-04-19 moretools = "'moretools' has been removed because it is unmaintained"; # Added 2026-01-19 + mpire = throw "'mpire' has been removed because it is unused in Nixpkgs"; # Added 2026-06-22 msldap-bad = throw "'msldap-bad' has been renamed to/replaced by 'badldap'"; # added 2025-11-06 mullvad-closest = throw "'mullvad-closest' has been removed as it was unmaintained. Consider using 'mullvad-compass' instead."; # Added 2026-01-13 multi_key_dict = throw "'multi_key_dict' has been renamed to/replaced by 'multi-key-dict'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1d0ef73df8c5..2fa1ed09f86d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10473,8 +10473,6 @@ self: super: with self; { mpi4py = callPackage ../development/python-modules/mpi4py { }; - mpire = callPackage ../development/python-modules/mpire { }; - mpl-scatter-density = callPackage ../development/python-modules/mpl-scatter-density { }; mpl-typst = callPackage ../development/python-modules/mpl-typst { From 92e58ee3e36f2efdd06cf59981c0c9d8985263a2 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 21 Jun 2026 23:44:10 -1000 Subject: [PATCH 3/4] python3Packages.sphinx-versions: remove --- .../sphinx-versions/default.nix | 43 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 45 deletions(-) delete mode 100644 pkgs/development/python-modules/sphinx-versions/default.nix diff --git a/pkgs/development/python-modules/sphinx-versions/default.nix b/pkgs/development/python-modules/sphinx-versions/default.nix deleted file mode 100644 index 0a92136a0b80..000000000000 --- a/pkgs/development/python-modules/sphinx-versions/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - setuptools, - wheel, - click, - colorclass, - sphinx, -}: - -buildPythonPackage rec { - pname = "sphinx-versions"; - version = "1.1.3"; - pyproject = true; - - src = fetchPypi { - inherit pname version; - hash = "sha256-9ROFEjET+d2Dfg4DHx0IqUN34oGwY4AGbi7teK4YmR8="; - }; - - build-system = [ - setuptools - wheel - ]; - - dependencies = [ - click - colorclass - sphinx - ]; - - pythonImportsCheck = [ - "sphinxcontrib.versioning" - ]; - - meta = { - description = "Sphinx extension that allows building versioned docs for self-hosting"; - homepage = "https://pypi.org/project/sphinx-versions/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ booxter ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 92eebe54156e..d5c0b3fab813 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -590,6 +590,7 @@ mapAliases { sphinx-hoverxref = throw "'sphinx-hoverxref' has been deprecated upstream. It's functionality was merged into the readthedocs.org admin panel."; # Added 2026-01-18" sphinx-jquery = throw "'sphinx-jquery' has been renamed to/replaced by 'sphinxcontrib-jquery'"; # Converted to throw 2025-10-29 sphinx-version-warning = throw "'sphinx-version-warning' has been abandoned upstream in 2019"; # Added 2026-01-18 + sphinx-versions = throw "'sphinx-versions' has been removed because it is unused in Nixpkgs"; # Added 2026-06-22 sphinx_rtd_theme = throw "'sphinx_rtd_theme' has been renamed to/replaced by 'sphinx-rtd-theme'"; # Converted to throw 2025-10-29 sphinxcontrib-autoapi = throw "'sphinxcontrib-autoapi' has been renamed to/replaced by 'sphinx-autoapi'"; # Converted to throw 2025-10-29 sphinxcontrib-newsfeed = throw "'sphinxcontrib-newsfeed has been removed due to abandonment upstream"; # Added 2026-03-24 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2fa1ed09f86d..dd655279fc88 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18697,8 +18697,6 @@ self: super: with self; { sphinx-toolbox = callPackage ../development/python-modules/sphinx-toolbox { }; - sphinx-versions = callPackage ../development/python-modules/sphinx-versions { }; - sphinxawesome-theme = callPackage ../development/python-modules/sphinxawesome-theme { }; sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { }; From 26222d00c1a94917bd25dcf51c444e221c94b80e Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 21 Jun 2026 23:46:23 -1000 Subject: [PATCH 4/4] python3Packages.sphinxcontrib-images: remove --- .../sphinxcontrib-images/default.nix | 41 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 pkgs/development/python-modules/sphinxcontrib-images/default.nix diff --git a/pkgs/development/python-modules/sphinxcontrib-images/default.nix b/pkgs/development/python-modules/sphinxcontrib-images/default.nix deleted file mode 100644 index da2a701551dc..000000000000 --- a/pkgs/development/python-modules/sphinxcontrib-images/default.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - setuptools, - requests, - sphinx, -}: - -buildPythonPackage rec { - pname = "sphinxcontrib-images"; - version = "1.0.1"; - pyproject = true; - - src = fetchFromGitHub { - owner = "sphinx-contrib"; - repo = "images"; - tag = version; - hash = "sha256-olkczYxvdUgLZXmvA0SUXL2q+NL4tvUfRWBG7S05dQU="; - }; - - build-system = [ - setuptools - ]; - - dependencies = [ - requests - sphinx - ]; - - pythonImportsCheck = [ - "sphinxcontrib.images" - ]; - - meta = { - description = "Sphinx extension for thumbnails"; - homepage = "https://pypi.org/project/sphinxcontrib-images/"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ booxter ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index d5c0b3fab813..87ecdd02e734 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -593,6 +593,7 @@ mapAliases { sphinx-versions = throw "'sphinx-versions' has been removed because it is unused in Nixpkgs"; # Added 2026-06-22 sphinx_rtd_theme = throw "'sphinx_rtd_theme' has been renamed to/replaced by 'sphinx-rtd-theme'"; # Converted to throw 2025-10-29 sphinxcontrib-autoapi = throw "'sphinxcontrib-autoapi' has been renamed to/replaced by 'sphinx-autoapi'"; # Converted to throw 2025-10-29 + sphinxcontrib-images = throw "'sphinxcontrib-images' has been removed because it is unused in Nixpkgs"; # Added 2026-06-22 sphinxcontrib-newsfeed = throw "'sphinxcontrib-newsfeed has been removed due to abandonment upstream"; # Added 2026-03-24 sphinxcontrib_httpdomain = throw "'sphinxcontrib_httpdomain' has been renamed to/replaced by 'sphinxcontrib-httpdomain'"; # Converted to throw 2025-10-29 sphinxcontrib_newsfeed = throw "'sphinxcontrib_newsfeed' has been renamed to/replaced by 'sphinxcontrib-newsfeed'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dd655279fc88..fa9d16f0fe67 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18729,8 +18729,6 @@ self: super: with self; { sphinxcontrib-httpdomain = callPackage ../development/python-modules/sphinxcontrib-httpdomain { }; - sphinxcontrib-images = callPackage ../development/python-modules/sphinxcontrib-images { }; - sphinxcontrib-jinjadomain = callPackage ../development/python-modules/sphinxcontrib-jinjadomain { }; sphinxcontrib-jquery = callPackage ../development/python-modules/sphinxcontrib-jquery { };