python3Packages.jupyter-packaging: disable FutureWarning

This commit is contained in:
Martin Weinelt
2026-05-30 03:53:13 +02:00
parent 47cb1d0c8e
commit 116e9f56cc
@@ -31,9 +31,9 @@ buildPythonPackage rec {
})
];
nativeBuildInputs = [ hatchling ];
build-system = [ hatchling ];
propagatedBuildInputs = [
dependencies = [
deprecation
packaging
setuptools
@@ -45,7 +45,11 @@ buildPythonPackage rec {
pytest-timeout
];
pytestFlags = [ "-Wignore::DeprecationWarning" ];
pytestFlags = [
"-Wignore::DeprecationWarning"
# The 'wheel' package is no longer the canonical location of the 'bdist_wheel' command, and will be removed in a future release. Please update to setuptools v70.1 or later which contains an integrated version of this command.
"-Wignore::FutureWarning"
];
preCheck = ''
export HOME=$(mktemp -d)