2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
buildPythonPackage,
|
|
|
|
setuptools,
|
|
|
|
numpy,
|
|
|
|
scipySupport ? false,
|
|
|
|
scipy,
|
|
|
|
scikitSupport ? false,
|
|
|
|
scikit-learn,
|
2021-07-24 12:14:16 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nengo";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "4.0.0";
|
|
|
|
pyproject = true;
|
2021-07-24 12:14:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nengo";
|
|
|
|
repo = "nengo";
|
2024-01-13 08:15:51 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "sha256-b9mPjKdewIqIeRrddV1/M3bghSyox7Lz6VbfSLCHZjA=";
|
2021-07-24 12:14:16 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs = [ setuptools ];
|
2024-01-13 08:15:51 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
] ++ lib.optionals scipySupport [ scipy ] ++ lib.optionals scikitSupport [ scikit-learn ];
|
2021-07-24 12:14:16 +00:00
|
|
|
|
|
|
|
# checks req missing:
|
|
|
|
# pytest-allclose
|
|
|
|
# pytest-plt
|
|
|
|
# pytest-rng
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "nengo" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Python library for creating and simulating large-scale brain models";
|
2024-06-05 15:53:02 +00:00
|
|
|
homepage = "https://nengo.ai/";
|
|
|
|
license = licenses.unfreeRedistributable;
|
2021-07-24 12:14:16 +00:00
|
|
|
maintainers = with maintainers; [ arjix ];
|
|
|
|
};
|
|
|
|
}
|