python310Packages.nengo 0 -> 1 attrpath: python310Packages.nengo Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-nengo-3.2.0 Press Enter key to continue... Running update for: - python3.10-nengo-3.2.0: UPDATING ... - python3.10-nengo-3.2.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/nengo/default.nix b/pkgs/development/python-modules/nengo/default.nix index da5d79e31e65..797c083a2a8e 100644 --- a/pkgs/development/python-modules/nengo/default.nix +++ b/pkgs/development/python-modules/nengo/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "nengo"; - version = "3.2.0"; + version = "4.0.0"; format = "setuptools"; src = fetchFromGitHub { owner = "nengo"; repo = "nengo"; - rev = "v${version}"; - sha256 = "12lz8lzirxvwnpa74k9k48c64gs6gi092928rh97siya3i6gjs6i"; + rev = "refs/tags/v${version}"; + sha256 = "sha256-b9mPjKdewIqIeRrddV1/M3bghSyox7Lz6VbfSLCHZjA="; }; propagatedBuildInputs = [ numpy ] No auto update branch exists Old version 3.2.0" not present in staging derivation file with contents: { lib , fetchFromGitHub , buildPythonPackage , setuptools , numpy , scipySupport ? false, scipy , scikitSupport ? false, scikit-learn }: buildPythonPackage rec { pname = "nengo"; version = "4.0.0"; pyproject = true; src = fetchFromGitHub { owner = "nengo"; repo = "nengo"; rev = "refs/tags/v${version}"; sha256 = "sha256-b9mPjKdewIqIeRrddV1/M3bghSyox7Lz6VbfSLCHZjA="; }; nativeBuildInputs = [ setuptools ]; 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 ]; }; }