13 buildPythonPackage rec {
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 sha256 = "sha256-b9mPjKdewIqIeRrddV1/M3bghSyox7Lz6VbfSLCHZjA=";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [
29 ] ++ lib.optionals scipySupport [ scipy ] ++ lib.optionals scikitSupport [ scikit-learn ];
37 pythonImportsCheck = [ "nengo" ];
40 description = "Python library for creating and simulating large-scale brain models";
41 homepage = "https://nengo.ai/";
42 license = licenses.unfreeRedistributable;
43 maintainers = with maintainers; [ arjix ];