From e7f0482cf0b69936cac62a140e09c6a51a041a22 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 17 May 2025 14:31:51 +0200 Subject: [PATCH] python313Packages.astroid: 3.3.8 -> 3.3.10 https://github.com/PyCQA/astroid/blob/v3.3.10/ChangeLog --- pkgs/development/python-modules/astroid/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix index 01c25a4c2be6..2e82ff76ea46 100644 --- a/pkgs/development/python-modules/astroid/default.nix +++ b/pkgs/development/python-modules/astroid/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "astroid"; - version = "3.3.8"; # Check whether the version is compatible with pylint + version = "3.3.10"; # Check whether the version is compatible with pylint pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "PyCQA"; repo = "astroid"; tag = "v${version}"; - hash = "sha256-KKQuLomCHhVYMX1gE9WuqbXOfsf2izGlLE0Ml62gY3k="; + hash = "sha256-q4ZPXz2xaKJ39q6g1c9agktKSCfbRp+3INDfXg/wP8k="; }; nativeBuildInputs = [ setuptools ]; @@ -33,6 +33,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTestPaths = [ + # requires mypy + "tests/test_raw_building.py" + ]; + passthru.tests = { inherit pylint; };