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/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 ]; 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/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 ef060c43c5ef..a8ef3de01e12 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -368,6 +368,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 @@ -592,8 +593,10 @@ 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-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 03d1906efcd4..30560967024b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10553,8 +10553,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 { @@ -18815,8 +18813,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 { }; @@ -18849,8 +18845,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 { };