isort 0 -> 1 attrpath: isort 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/0ww1lh432rlwl20syr2cd1cb1drssfnn-packages.json.drv building '/nix/store/0ww1lh432rlwl20syr2cd1cb1drssfnn-packages.json.drv'... Going to be running update for following packages: - isort-5.12.0 Press Enter key to continue... Running update for: - isort-5.12.0: UPDATING ... - isort-5.12.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/isort/default.nix b/pkgs/development/python-modules/isort/default.nix index 6bf563af4784..07a4a9a954a9 100644 --- a/pkgs/development/python-modules/isort/default.nix +++ b/pkgs/development/python-modules/isort/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "isort"; - version = "5.12.0"; + version = "5.13.2"; format = "pyproject"; src = fetchFromGitHub { owner = "PyCQA"; repo = "isort"; rev = "refs/tags/${version}"; - hash = "sha256-8ija4xWWZuYkElXLdziV7ulN8dubIsChcZQ5dx9hfO0="; + hash = "sha256-/1iKYmtNRw9u59zzJDwV7b9+EPxFJDHvhjTioGt5LLU="; }; nativeBuildInputs = [ No auto update branch exists Old version 5.12.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , colorama , hypothesis , poetry-core , setuptools , pylama , pytestCheckHook }: buildPythonPackage rec { pname = "isort"; version = "5.13.2"; format = "pyproject"; src = fetchFromGitHub { owner = "PyCQA"; repo = "isort"; rev = "refs/tags/${version}"; hash = "sha256-/1iKYmtNRw9u59zzJDwV7b9+EPxFJDHvhjTioGt5LLU="; }; nativeBuildInputs = [ poetry-core setuptools ]; nativeCheckInputs = [ colorama hypothesis pylama pytestCheckHook ]; postCheck = '' # Confirm that the produced executable script is wrapped correctly and runs # OK, by launching it in a subshell without PYTHONPATH ( unset PYTHONPATH echo "Testing that `isort --version-number` returns OK..." $out/bin/isort --version-number ) ''; preCheck = '' HOME=$TMPDIR export PATH=$PATH:$out/bin ''; pytestFlagsArray = [ "--ignore=tests/benchmark/" # requires pytest-benchmark "--ignore=tests/integration/" # pulls in 10 other packages "--ignore=tests/unit/profiles/test_black.py" # causes infinite recursion to include black # pytest.PytestRemovedIn8Warning: Passing None has been deprecated. "-W" "ignore::pytest.PytestRemovedIn8Warning" ]; disabledTests = [ "test_run" # doesn't like paths in /build "test_fuzz_show_unified_diff" # flakey "test_pyi_formatting_issue_942" "test_requirements_finder" "test_pipfile_finder" "test_main" # relies on git "test_command_line" # not thread safe "test_encoding_not_in_comment" # not python 3.9 compatible "test_encoding_not_in_first_two_lines" # not python 3.9 compatible "test_requirements_dir" # requires network # plugin not available "test_isort_literals_issue_1358" "test_isort_supports_formatting_plugins_issue_1353" "test_sort_configurable_sort_issue_1732" "test_value_assignment_list" # profiles not available "test_isort_supports_shared_profiles_issue_970" ]; meta = with lib; { description = "A Python utility / library to sort Python imports"; homepage = "https://github.com/PyCQA/isort"; license = licenses.mit; maintainers = with maintainers; [ couchemar ]; mainProgram = "isort"; }; }