depot/third_party/nixpkgs/pkgs/development/python-modules/mesa/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

51 lines
952 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy27,
cookiecutter,
networkx,
pandas,
tornado,
tqdm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mesa";
version = "2.2.4";
format = "setuptools";
# According to their docs, this library is for Python 3+.
disabled = isPy27;
src = fetchPypi {
pname = "mesa";
inherit version;
hash = "sha256-5og3ACS2r36BEGWfqtw6WG6yJwNF5p3M9K25sSmHosM=";
};
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 = "An agent-based modeling (or ABM) framework in Python";
license = licenses.asl20;
maintainers = [ maintainers.dpaetzel ];
broken = true; # missing dependencies
};
}