python3Packages.mesa: drop

This commit is contained in:
Michael Daniels
2025-10-04 16:16:12 -04:00
parent 7dacdb547a
commit 15f8dd456a
3 changed files with 1 additions and 53 deletions
@@ -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
};
}
+1
View File
@@ -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
-2
View File
@@ -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 { };