python310Packages.pep257 0 -> 1 attrpath: python310Packages.pep257 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fxlgq5irgfhh6acjy3fcznspymi68ql0-packages.json.drv building '/nix/store/fxlgq5irgfhh6acjy3fcznspymi68ql0-packages.json.drv'... Going to be running update for following packages: - python3.10-pydocstyle-6.1.1 Press Enter key to continue... Running update for: - python3.10-pydocstyle-6.1.1: UPDATING ... - python3.10-pydocstyle-6.1.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pydocstyle/default.nix b/pkgs/development/python-modules/pydocstyle/default.nix index 4a5b693ef44..bb77c1ef6b4 100644 --- a/pkgs/development/python-modules/pydocstyle/default.nix +++ b/pkgs/development/python-modules/pydocstyle/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "pydocstyle"; - version = "6.1.1"; + version = "6.3.0"; disabled = !isPy3k; format = "setuptools"; @@ -16,8 +16,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "PyCQA"; repo = pname; - rev = version; - sha256 = "sha256-j0WMD2qKDdMaKG2FxrrM/O7zX4waJ1afaRPRv70djkE="; + rev = "refs/tags/${version}"; + sha256 = "sha256-MjRrnWu18f75OjsYIlOLJK437X3eXnlW8WkkX7vdS6k="; }; propagatedBuildInputs = [ No auto update branch exists Old version 6.1.1" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , poetry-core , snowballstemmer , tomli , pytestCheckHook }: buildPythonPackage rec { pname = "pydocstyle"; version = "6.3.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "PyCQA"; repo = "pydocstyle"; rev = "refs/tags/${version}"; hash = "sha256-MjRrnWu18f75OjsYIlOLJK437X3eXnlW8WkkX7vdS6k="; }; nativeBuildInputs = [ poetry-core ]; postPatch = '' substituteInPlace pyproject.toml \ --replace 'version = "0.0.0-dev"' 'version = "${version}"' ''; propagatedBuildInputs = [ snowballstemmer ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; passthru.optional-dependencies.toml = [ tomli ]; nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.toml; disabledTestPaths = [ "src/tests/test_integration.py" # runs pip install ]; meta = with lib; { description = "Python docstring style checker"; homepage = "https://github.com/PyCQA/pydocstyle"; changelog = "https://github.com/PyCQA/pydocstyle/blob/${version}/docs/release_notes.rst"; license = licenses.mit; maintainers = with maintainers; [ dzabraev ]; }; }