python311Packages.astroid 0 -> 1 attrpath: python311Packages.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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/qi7y5y43frfj8sakwn5ymigkhkw3lz2a-packages.json.drv building '/nix/store/qi7y5y43frfj8sakwn5ymigkhkw3lz2a-packages.json.drv'... Going to be running update for following packages: - python3.11-astroid-3.0.2 Press Enter key to continue... Running update for: - python3.11-astroid-3.0.2: UPDATING ... - python3.11-astroid-3.0.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix index fd0812139e3c..d0b3fe60160a 100644 --- a/pkgs/development/python-modules/astroid/default.nix +++ b/pkgs/development/python-modules/astroid/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "astroid"; - version = "3.0.2"; # Check whether the version is compatible with pylint + version = "3.1.0"; # Check whether the version is compatible with pylint pyproject = true; disabled = pythonOlder "3.8"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "PyCQA"; repo = "astroid"; rev = "refs/tags/v${version}"; - hash = "sha256-KTmFJKlymI1ACWk3UhbkZF/dB9W8/h6kaAfKLL3yiCA="; + hash = "sha256-+cTQHbqoucaNi7rPoyH6Cu07vZMS8KWn5C/A3NXRSwE="; }; nativeBuildInputs = [ No auto update branch exists Old version 3.0.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder , setuptools , typing-extensions , pip , pylint , pytestCheckHook }: buildPythonPackage rec { pname = "astroid"; version = "3.1.0"; # Check whether the version is compatible with pylint pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "PyCQA"; repo = "astroid"; rev = "refs/tags/v${version}"; hash = "sha256-+cTQHbqoucaNi7rPoyH6Cu07vZMS8KWn5C/A3NXRSwE="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ typing-extensions ]; nativeCheckInputs = [ pip pytestCheckHook ]; passthru.tests = { inherit pylint; }; meta = with lib; { changelog = "https://github.com/PyCQA/astroid/blob/${src.rev}/ChangeLog"; description = "An abstract syntax tree for Python with inference support"; homepage = "https://github.com/PyCQA/astroid"; license = licenses.lgpl21Plus; maintainers = with maintainers; [ GaetanLepage ]; }; }