python311Packages.poetry-core 0 -> 1 attrpath: python311Packages.poetry-core 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/j2kkzpcbmk8nbcv7lisb6mmpdmx921q9-packages.json.drv building '/nix/store/j2kkzpcbmk8nbcv7lisb6mmpdmx921q9-packages.json.drv'... Going to be running update for following packages: - python3.11-poetry-core-1.8.1 Press Enter key to continue... Running update for: - python3.11-poetry-core-1.8.1: UPDATING ... - python3.11-poetry-core-1.8.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/poetry-core/default.nix b/pkgs/development/python-modules/poetry-core/default.nix index 9b3174a3b3bd..f99d28abffb0 100644 --- a/pkgs/development/python-modules/poetry-core/default.nix +++ b/pkgs/development/python-modules/poetry-core/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "poetry-core"; - version = "1.8.1"; + version = "1.9.0"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -23,8 +23,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "python-poetry"; repo = pname; - rev = version; - hash = "sha256-RnCJ67jaL2knwv+Uo7p0zOejHAT73f40weaJnfqOYoM="; + rev = "refs/tags/${version}"; + hash = "sha256-vvwKbzGlvv2LTbXfJxQVM3nUXFGntgJxsku6cbRxCzw="; }; nativeCheckInputs = [ No auto update branch exists Old version 1.8.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , pythonOlder , build , git , pytest-mock , pytestCheckHook , setuptools , tomli-w , virtualenv }: buildPythonPackage rec { pname = "poetry-core"; version = "1.9.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "python-poetry"; repo = pname; rev = version; hash = "sha256-vvwKbzGlvv2LTbXfJxQVM3nUXFGntgJxsku6cbRxCzw="; }; nativeCheckInputs = [ build git pytest-mock pytestCheckHook setuptools tomli-w virtualenv ]; # Requires git history to work correctly disabledTests = [ "default_with_excluded_data" "default_src_with_excluded_data" ]; pythonImportsCheck = [ "poetry.core" ]; # Allow for package to use pep420's native namespaces pythonNamespaces = [ "poetry" ]; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-int-conversion"; meta = with lib; { changelog = "https://github.com/python-poetry/poetry-core/blob/${src.rev}/CHANGELOG.md"; description = "Core utilities for Poetry"; homepage = "https://github.com/python-poetry/poetry-core/"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }