python3Packages.nengo: 4.0.0 -> 4.1.0

Upstream 4.1.0 drops the `setuptools<64` build-system pin from
pyproject.toml that was breaking the build against current nixpkgs
setuptools.
This commit is contained in:
Chahatpreet Singh
2026-05-21 03:37:42 +00:00
parent 0bdd08c33a
commit 9ef736f8a8
@@ -10,21 +10,21 @@
scikit-learn,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "nengo";
version = "4.0.0";
version = "4.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "nengo";
repo = "nengo";
tag = "v${version}";
sha256 = "sha256-b9mPjKdewIqIeRrddV1/M3bghSyox7Lz6VbfSLCHZjA=";
tag = "v${finalAttrs.version}";
hash = "sha256-yZDnttXU5qMmQwFESkhQb06BXcqPEiPYl54azS5b284=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
numpy
]
++ lib.optionals scipySupport [ scipy ]
@@ -41,7 +41,7 @@ buildPythonPackage rec {
meta = {
description = "Python library for creating and simulating large-scale brain models";
homepage = "https://nengo.ai/";
license = lib.licenses.unfreeRedistributable;
license = lib.licenses.gpl2Only;
maintainers = [ ];
};
}
})