summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 15:28:21 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:05:27 +0200
commitc8947cb5c2ee9328ab93d01f1dadf8b3943bf490 (patch)
tree1fe6ace627afdb9e7be79830c2f1cd55444489b6
parentpython3Packages.zha: test with pytest-asyncio 0.x (diff)
downloadnixpkgs-c8947cb5c2ee9328ab93d01f1dadf8b3943bf490.tar.gz
python3Packages.paste: ignore deprecation warning in tests
-rw-r--r--pkgs/development/python-modules/paste/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/paste/default.nix b/pkgs/development/python-modules/paste/default.nix
index ae7eb8b7a79e..5674b4ceb3f1 100644
--- a/pkgs/development/python-modules/paste/default.nix
+++ b/pkgs/development/python-modules/paste/default.nix
@@ -40,6 +40,11 @@ buildPythonPackage rec {
touch tests/urlparser_data/secured.txt
'';
+ disabledTests = [
+ # pkg_resources deprecation warning
+ "test_form"
+ ];
+
pythonNamespaces = [ "paste" ];
meta = with lib; {