python3Packages.astroid: 3.3.10 -> 3.3.11

https://github.com/PyCQA/astroid/blob/v3.3.11/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.10"; # Check whether the version is compatible with pylint
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "PyCQA";
repo = "astroid";
tag = "v${version}";
-
hash = "sha256-q4ZPXz2xaKJ39q6g1c9agktKSCfbRp+3INDfXg/wP8k=";
};
nativeBuildInputs = [ setuptools ];
···
nativeCheckInputs = [
pip
pytestCheckHook
];
disabledTestPaths = [
···
buildPythonPackage rec {
pname = "astroid";
+
version = "3.3.11"; # Check whether the version is compatible with pylint
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "PyCQA";
repo = "astroid";
tag = "v${version}";
+
hash = "sha256-lv+BQDYP7N4UGMf7XhB6HVDORPU0kZQPYveQWOcAqfQ=";
};
nativeBuildInputs = [ setuptools ];
···
nativeCheckInputs = [
pip
pytestCheckHook
+
];
+
+
disabledTests = [
+
# UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html.
+
"test_identify_old_namespace_package_protocol"
];
disabledTestPaths = [