python311Packages.numexpr 2.8.6 -> 2.8.8 https://repology.org/project/python:numexpr/versions attrpath: python311Packages.numexpr 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.11-numexpr-2.8.6 Press Enter key to continue... Running update for: - python3.11-numexpr-2.8.6: UPDATING ... - python3.11-numexpr-2.8.6: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/numexpr/default.nix b/pkgs/development/python-modules/numexpr/default.nix index 6acc3e53f4e4..5503aa9ff4a4 100644 --- a/pkgs/development/python-modules/numexpr/default.nix +++ b/pkgs/development/python-modules/numexpr/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "numexpr"; - version = "2.8.6"; + version = "2.8.8"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-Yzb426P0VuQaT/w8l+tj2JxzWJ/24XBxQSJLkwJjJg0="; + hash = "sha256-52zk0lNy9GFwz36x/xTtXZxpoLFipAUGPL5IG6/jrzQ="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.8.6" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , numpy , packaging , python , pythonOlder }: buildPythonPackage rec { pname = "numexpr"; version = "2.8.7"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-WW7rO7/ryRL0tuqvhCthunIs69uLxC3++mV9OnSVOEk="; }; nativeBuildInputs = [ numpy ]; propagatedBuildInputs = [ numpy packaging ]; preBuild = '' # Remove existing site.cfg, use the one we built for numpy ln -s ${numpy.cfg} site.cfg ''; checkPhase = '' runtest="$(pwd)/numexpr/tests/test_numexpr.py" pushd "$out" ${python.interpreter} "$runtest" popd ''; pythonImportsCheck = [ "numexpr" ]; meta = with lib; { description = "Fast numerical array expression evaluator for NumPy"; homepage = "https://github.com/pydata/numexpr"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }