nixpkgs/pkgs/development/python-modules/nengo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
882 B
Nix
Raw Normal View History

2021-07-12 12:41:16 +00:00
{ lib, fetchFromGitHub, buildPythonPackage
, numpy
, scipySupport ? false, scipy
, scikitSupport ? false, scikit-learn
}:
buildPythonPackage rec {
pname = "nengo";
version = "3.2.0";
2021-07-12 12:41:16 +00:00
src = fetchFromGitHub {
owner = "nengo";
repo = "nengo";
rev = "v${version}";
sha256 = "12lz8lzirxvwnpa74k9k48c64gs6gi092928rh97siya3i6gjs6i";
2021-07-12 12:41:16 +00:00
};
propagatedBuildInputs = [ numpy ]
++ lib.optionals scipySupport [ scipy ]
++ lib.optionals scikitSupport [ scikit-learn ];
# checks req missing:
# pytest-allclose
# pytest-plt
# pytest-rng
doCheck = false;
pythonImportsCheck = [ "nengo" ];
meta = with lib; {
description = "A Python library for creating and simulating large-scale brain models";
homepage = "https://nengo.ai/";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ arjix ];
};
}