2022-12-30T14:13:18 python310Packages.poetry 0 -> 1 2022-12-30T14:13:21 attrpath: python310Packages.poetry 2022-12-30T14:13:21 Checking auto update branch... 2022-12-30T14:13:25 [version] 2022-12-30T14:13:25 [version] skipping because derivation has updateScript 2022-12-30T14:13:25 [rustCrateVersion] 2022-12-30T14:13:25 [rustCrateVersion] No cargoSha256 found 2022-12-30T14:13:25 [golangModuleVersion] 2022-12-30T14:13:25 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-30T14:13:25 [updateScript] 2022-12-30T14:13:28 [updateScript] Success 2022-12-30T14:13:28 [updateScript] this derivation will be built: /nix/store/j433pp7nsxhl9jcf0sjb9sww6bk2gm07-packages.json.drv building '/nix/store/j433pp7nsxhl9jcf0sjb9sww6bk2gm07-packages.json.drv'... Going to be running update for following packages: - python3.10-poetry-1.2.2 Press Enter key to continue... Running update for: - python3.10-poetry-1.2.2: UPDATING ... - python3.10-poetry-1.2.2: DONE. Packages updated! 2022-12-30T14:13:28 2022-12-30T14:13:28 [quotedUrls] 2022-12-30T14:13:28 [quotedUrls] nothing found to replace 2022-12-30T14:13:29 Diff after rewrites: diff --git a/pkgs/development/python-modules/poetry/default.nix b/pkgs/development/python-modules/poetry/default.nix index 2e81f7e5531..1fc0dfb7c5e 100644 --- a/pkgs/development/python-modules/poetry/default.nix +++ b/pkgs/development/python-modules/poetry/default.nix @@ -40,7 +40,7 @@ buildPythonPackage rec { pname = "poetry"; - version = "1.2.2"; + version = "1.3.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -49,7 +49,7 @@ buildPythonPackage rec { owner = "python-poetry"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-huIjLv1T42HEmePCQNJpKnNxJKdyD9MlEtc2WRPOjRE="; + hash = "sha256-yiV2Y0vBF0d7BFfT5wonzRUGHVH040PZrlAUpVTFCZc="; }; postPatch = '' 2022-12-30T14:14:56 Old version 1.2.2" not present in staging derivation file with contents: { lib , backports-cached-property , buildPythonPackage , cachecontrol , cachy , cleo , crashtest , deepdiff , dulwich , fetchFromGitHub , filelock , flatdict , html5lib , httpretty , importlib-metadata , installShellFiles , intreehooks , jsonschema , keyring , lockfile , packaging , pexpect , pkginfo , platformdirs , poetry-core , poetry-plugin-export , pytest-mock , pytest-xdist , pytestCheckHook , pythonAtLeast , pythonOlder , requests , requests-toolbelt , shellingham , stdenv , tomli , tomlkit , trove-classifiers , urllib3 , virtualenv , xattr }: buildPythonPackage rec { pname = "poetry"; version = "1.3.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "python-poetry"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-e60lGOu/g3SahArQXUuW8nIFgReILF5/lPOfOn0qz5o="; }; nativeBuildInputs = [ installShellFiles ]; propagatedBuildInputs = [ cachecontrol cleo crashtest dulwich filelock html5lib jsonschema keyring packaging pexpect pkginfo platformdirs poetry-core poetry-plugin-export requests requests-toolbelt shellingham tomlkit trove-classifiers virtualenv ] ++ lib.optionals (stdenv.isDarwin) [ xattr ] ++ lib.optionals (pythonOlder "3.11") [ tomli ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ] ++ lib.optionals (pythonOlder "3.8") [ backports-cached-property ] ++ cachecontrol.optional-dependencies.filecache; postInstall = '' installShellCompletion --cmd poetry \ --bash <($out/bin/poetry completions bash) \ --fish <($out/bin/poetry completions fish) \ --zsh <($out/bin/poetry completions zsh) \ ''; checkInputs = [ cachy deepdiff flatdict pytestCheckHook httpretty pytest-mock pytest-xdist ]; preCheck = ('' export HOME=$TMPDIR '' + lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' # https://github.com/python/cpython/issues/74570#issuecomment-1093748531 export no_proxy='*'; ''); postCheck = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' unset no_proxy ''; disabledTests = [ # touches network "git" "solver" "load" "vcs" "prereleases_if_they_are_compatible" "test_executor" # requires git history to work correctly "default_with_excluded_data" # toml ordering has changed "lock" # fs permission errors "test_builder_should_execute_build_scripts" ] ++ lib.optionals (pythonAtLeast "3.10") [ # RuntimeError: 'auto_spec' might be a typo; use unsafe=True if this is intended "test_info_setup_complex_pep517_error" ]; # Allow for package to use pep420's native namespaces pythonNamespaces = [ "poetry" ]; meta = with lib; { changelog = "https://github.com/python-poetry/poetry/blob/${src.rev}/CHANGELOG.md"; homepage = "https://python-poetry.org/"; description = "Python dependency management and packaging made easy"; license = licenses.mit; maintainers = with maintainers; [ jakewaksbaum ]; }; }