python310Packages.devtools 0 -> 1 attrpath: python310Packages.devtools 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/9zvyi7ki72fzijw0j1s2s35gplm836am-packages.json.drv building '/nix/store/9zvyi7ki72fzijw0j1s2s35gplm836am-packages.json.drv'... Going to be running update for following packages: - python3.10-devtools-0.10.0 Press Enter key to continue... Running update for: - python3.10-devtools-0.10.0: UPDATING ... - python3.10-devtools-0.10.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/devtools/default.nix b/pkgs/development/python-modules/devtools/default.nix index 79f8d3d5cbb..9292dccf259 100644 --- a/pkgs/development/python-modules/devtools/default.nix +++ b/pkgs/development/python-modules/devtools/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "devtools"; - version = "0.10.0"; + version = "0.11.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -20,8 +20,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "samuelcolvin"; repo = "python-${pname}"; - rev = "v${version}"; - hash = "sha256-x9dL/FE94OixMAmjnmfzZUcYJBqE5P2AAIFsNJF0Fxo="; + rev = "refs/tags/v${version}"; + hash = "sha256-ogogXZnuSFkWktCin+cyefjqIbGFRBVIeOrZJAa3hOE="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.10.0" not present in staging derivation file with contents: { lib , asttokens , buildPythonPackage , executing , hatchling , fetchFromGitHub , pygments , pytest-mock , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "devtools"; version = "0.11.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "samuelcolvin"; repo = "python-${pname}"; rev = "refs/tags/v${version}"; hash = "sha256-ogogXZnuSFkWktCin+cyefjqIbGFRBVIeOrZJAa3hOE="; }; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ asttokens executing pygments ]; nativeCheckInputs = [ pytestCheckHook pytest-mock ]; pytestFlagsArray = [ # pytest.PytestRemovedIn8Warning: Passing None has been deprecated. "-W ignore::pytest.PytestRemovedIn8Warning" ]; disabledTests = [ # Test for Windows32 "test_print_subprocess" # Sensitive to timing "test_multiple_not_verbose" # Sensitive to interpreter output "test_simple" ]; disabledTestPaths = [ # pytester_pretty is not available in Nixpkgs "tests/test_insert_assert.py" ]; pythonImportsCheck = [ "devtools" ]; meta = with lib; { description = "Python's missing debug print command and other development tools"; homepage = "https://python-devtools.helpmanual.io/"; changelog = "https://github.com/samuelcolvin/python-devtools/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ jdahm ]; }; }