From 15f8dd456a6d685f47ddb58c1af7fd30c2ce3e1d Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Fri, 3 Oct 2025 22:18:50 -0400 Subject: [PATCH] python3Packages.mesa: drop --- .../python-modules/mesa/default.nix | 51 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 53 deletions(-) delete mode 100644 pkgs/development/python-modules/mesa/default.nix diff --git a/pkgs/development/python-modules/mesa/default.nix b/pkgs/development/python-modules/mesa/default.nix deleted file mode 100644 index c26bf68c8582..000000000000 --- a/pkgs/development/python-modules/mesa/default.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - isPy27, - cookiecutter, - networkx, - pandas, - tornado, - tqdm, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "mesa"; - version = "3.2.0"; - format = "setuptools"; - - # According to their docs, this library is for Python 3+. - disabled = isPy27; - - src = fetchPypi { - pname = "mesa"; - inherit version; - hash = "sha256-k4UjkUGL4qDgOhucQU7svRNZtM3ZqtO6NUxpl4NhQl0="; - }; - - propagatedBuildInputs = [ - cookiecutter - networkx - pandas - tornado - tqdm - ]; - - nativeCheckInputs = [ pytestCheckHook ]; - - disabledTests = [ - "test_examples" - "test_run" - "test_scaffold_creates_project_dir" - ]; - - meta = with lib; { - homepage = "https://github.com/projectmesa/mesa"; - description = "Agent-based modeling (or ABM) framework in Python"; - license = licenses.asl20; - maintainers = [ maintainers.dpaetzel ]; - broken = true; # missing dependencies - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index f17434b17512..a4dc6e95b058 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -441,6 +441,7 @@ mapAliases ({ mathlibtools = throw "mathlibtools has been removed because the upstream repository was archived in 2023"; # added 2025-07-09 matrix-api-async = throw "matrix-api-async has been removed as it is an old wrapper and no longer in use"; # added 2025-01-01 memory_profiler = memory-profiler; # added 2023-10-09 + mesa = throw "python3Packages.mesa has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-03 mir_eval = mir-eval; # added 2024-01-07 mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12 mistune_2_0 = mistune; # added 2022-08-12 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 745edcd7a41d..c9e361aa6f20 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9235,8 +9235,6 @@ self: super: with self; { meross-iot = callPackage ../development/python-modules/meross-iot { }; - mesa = callPackage ../development/python-modules/mesa { }; - meshcat = callPackage ../development/python-modules/meshcat { }; meshcore = callPackage ../development/python-modules/meshcore { };