1 { lib, fetchFromGitHub, buildPythonPackage
3 , scipySupport ? false, scipy
4 , scikitSupport ? false, scikit-learn
7 buildPythonPackage rec {
11 src = fetchFromGitHub {
15 sha256 = "12lz8lzirxvwnpa74k9k48c64gs6gi092928rh97siya3i6gjs6i";
18 propagatedBuildInputs = [ numpy ]
19 ++ lib.optionals scipySupport [ scipy ]
20 ++ lib.optionals scikitSupport [ scikit-learn ];
28 pythonImportsCheck = [ "nengo" ];
31 description = "A Python library for creating and simulating large-scale brain models";
32 homepage = "https://nengo.ai/";
33 license = licenses.unfreeRedistributable;
34 maintainers = with maintainers; [ arjix ];