2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
|
2019-10-16 18:45:26 +01:00
|
|
|
, cookiecutter, networkx , pandas, tornado, tqdm
|
|
|
|
, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mesa";
|
2020-11-23 14:57:45 +00:00
|
|
|
version = "0.8.7";
|
2019-10-16 18:45:26 +01:00
|
|
|
|
|
|
|
# According to their docs, this library is for Python 3+.
|
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectmesa";
|
|
|
|
repo = "mesa";
|
2020-11-23 14:57:45 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0i1bpdqjrx4avgrzyqxpwxx86j11yhrq1j4kca854xahvhmwis19";
|
2019-10-16 18:45:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
# Ignore test which tries to mkdir in unreachable location.
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests -k "not scaffold"
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cookiecutter networkx pandas tornado tqdm ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-16 18:45:26 +01:00
|
|
|
homepage = "https://github.com/projectmesa/mesa";
|
|
|
|
description = "An agent-based modeling (or ABM) framework in Python";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.dpaetzel ];
|
|
|
|
};
|
|
|
|
}
|