python310Packages.astroid 0 -> 1 attrpath: python310Packages.astroid 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/jnl4fpn61sm190q1dd4gji3kh5a6700w-packages.json.drv building '/nix/store/jnl4fpn61sm190q1dd4gji3kh5a6700w-packages.json.drv'... Going to be running update for following packages: - python3.10-astroid-2.12.12 Press Enter key to continue... Running update for: - python3.10-astroid-2.12.12: UPDATING ... - python3.10-astroid-2.12.12: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix index 9cacef4ac79..bdf5273994f 100644 --- a/pkgs/development/python-modules/astroid/default.nix +++ b/pkgs/development/python-modules/astroid/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "astroid"; - version = "2.12.12"; # Check whether the version is compatible with pylint + version = "2.13.2"; # Check whether the version is compatible with pylint format = "pyproject"; disabled = pythonOlder "3.7.2"; @@ -22,8 +22,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "PyCQA"; repo = pname; - rev = "v${version}"; - hash = "sha256-FN/bBAxx9p1iAB3WXIZyyKv/zse7xtXzslclADMbouA="; + rev = "refs/tags/v${version}"; + hash = "sha256-Vn8yDe3cfQKoLdxmS85ROUy0cHQLgIeHVSh0xQ6+/WE="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.12.12" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder , isPyPy , lazy-object-proxy , setuptools , typing-extensions , typed-ast , pylint , pytestCheckHook , wrapt }: buildPythonPackage rec { pname = "astroid"; version = "2.12.13"; # Check whether the version is compatible with pylint format = "pyproject"; disabled = pythonOlder "3.7.2"; src = fetchFromGitHub { owner = "PyCQA"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-C4A/JOFdIRgaZuV/YOLc4nC05XTtRCC1i0BcGBEG5ps="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ lazy-object-proxy wrapt ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ] ++ lib.optionals (!isPyPy && pythonOlder "3.8") [ typed-ast ]; checkInputs = [ pytestCheckHook typing-extensions ]; passthru.tests = { inherit pylint; }; meta = with lib; { description = "An abstract syntax tree for Python with inference support"; homepage = "https://github.com/PyCQA/astroid"; license = licenses.lgpl21Plus; maintainers = with maintainers; [ SuperSandro2000 ]; }; }