python313Packages.astroid: 3.3.8 -> 3.3.10

https://github.com/PyCQA/astroid/blob/v3.3.10/ChangeLog

Changed files
+7 -2
pkgs
development
python-modules
astroid
+7 -2
pkgs/development/python-modules/astroid/default.nix
···
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";
···
owner = "PyCQA";
repo = "astroid";
tag = "v${version}";
-
hash = "sha256-KKQuLomCHhVYMX1gE9WuqbXOfsf2izGlLE0Ml62gY3k=";
+
hash = "sha256-q4ZPXz2xaKJ39q6g1c9agktKSCfbRp+3INDfXg/wP8k=";
};
nativeBuildInputs = [ setuptools ];
···
nativeCheckInputs = [
pip
pytestCheckHook
+
];
+
+
disabledTestPaths = [
+
# requires mypy
+
"tests/test_raw_building.py"
];
passthru.tests = {