diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 15:28:21 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:05:27 +0200 |
| commit | c8947cb5c2ee9328ab93d01f1dadf8b3943bf490 (patch) | |
| tree | 1fe6ace627afdb9e7be79830c2f1cd55444489b6 | |
| parent | python3Packages.zha: test with pytest-asyncio 0.x (diff) | |
| download | nixpkgs-c8947cb5c2ee9328ab93d01f1dadf8b3943bf490.tar.gz | |
python3Packages.paste: ignore deprecation warning in tests
| -rw-r--r-- | pkgs/development/python-modules/paste/default.nix | 5 |
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; { |
