python3Packages.autopxd2: 3.2.2 -> 3.2.3 (#532063)

This commit is contained in:
Martin Weinelt
2026-07-16 15:22:32 +00:00
committed by GitHub

View File

@@ -11,13 +11,14 @@
buildPythonPackage rec {
pname = "python-autopxd2";
version = "3.2.2";
version = "3.2.3";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "autopxd2";
inherit version;
hash = "sha256-fzq5xy7vPjxwgaEyBXk3Ke9JnySJ3PM5WAucFCZ/IP8=";
hash = "sha256-Zf44gmkuWvp8lfrScq4GAhOisLYu4scyuNp1Cn3lnVc=";
};
build-system = [
@@ -34,6 +35,13 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestMarks = [
# downloads headers at runtime
"real_headers"
# needs clang2 python module
"libclang"
];
enabledTestPaths = [
"test/"
];