python311Packages.build 0 -> 1 attrpath: python311Packages.build 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] this derivation will be built: /nix/store/zwp2gvxmz2614414hcq5glndbgfw2knp-packages.json.drv building '/nix/store/zwp2gvxmz2614414hcq5glndbgfw2knp-packages.json.drv'... Going to be running update for following packages: - python3.11-build-1.1.1 Press Enter key to continue... Running update for: - python3.11-build-1.1.1: UPDATING ... - python3.11-build-1.1.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/build/default.nix b/pkgs/development/python-modules/build/default.nix index 7d56257a377d..4f30c8f18629 100644 --- a/pkgs/development/python-modules/build/default.nix +++ b/pkgs/development/python-modules/build/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "build"; - version = "1.1.1"; + version = "1.2.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "pypa"; repo = "build"; rev = "refs/tags/${version}"; - hash = "sha256-SGWpm+AGIfqKMpDfmz2aMYmcs+XVREbHIXSuU4R7U/k="; + hash = "sha256-G0g+1v19sQMUuQlZKGELZOwwX07i7TIdEdaYzr8bKtI="; }; postPatch = '' No auto update branch exists Old version 1.1.1" not present in staging derivation file with contents: { lib , stdenv , build , buildPythonPackage , fetchFromGitHub , flit-core , filelock , packaging , pyproject-hooks , pytest-mock , pytest-rerunfailures , pytest-xdist , pytestCheckHook , pythonOlder , setuptools , tomli , wheel }: buildPythonPackage rec { pname = "build"; version = "1.2.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "pypa"; repo = "build"; rev = "refs/tags/${version}"; hash = "sha256-G0g+1v19sQMUuQlZKGELZOwwX07i7TIdEdaYzr8bKtI="; }; postPatch = '' # not strictly required, causes circular dependency cycle sed -i '/importlib-metadata >= 4.6/d' pyproject.toml ''; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ packaging pyproject-hooks ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; # We need to disable tests because this package is part of the bootstrap chain # and its test dependencies cannot be built yet when this is being built. doCheck = false; passthru.tests = { pytest = buildPythonPackage { pname = "${pname}-pytest"; inherit src version; format = "other"; dontBuild = true; dontInstall = true; nativeCheckInputs = [ build filelock pytest-mock pytest-rerunfailures pytest-xdist pytestCheckHook setuptools wheel ]; pytestFlagsArray = [ "-W" "ignore::DeprecationWarning" ]; __darwinAllowLocalNetworking = true; disabledTests = [ # Tests often fail with StopIteration "test_isolat" "test_default_pip_is_never_too_old" "test_build" "test_with_get_requires" "test_init" "test_output" "test_wheel_metadata" ] ++ lib.optionals stdenv.isDarwin [ # Expects Apple's Python and its quirks "test_can_get_venv_paths_with_conflicting_default_scheme" ]; }; }; pythonImportsCheck = [ "build" ]; meta = with lib; { mainProgram = "pyproject-build"; description = "Simple, correct PEP517 package builder"; longDescription = '' build will invoke the PEP 517 hooks to build a distribution package. It is a simple build tool and does not perform any dependency management. ''; homepage = "https://github.com/pypa/build"; changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst"; license = licenses.mit; maintainers = teams.python.members ++ [ maintainers.fab ]; }; }