mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
[Backport release-26.05] python3Packages.nltk: skip failing test on darwin (#536777)
This commit is contained in:
commit
767de6d388
1 changed files with 6 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
pkgs,
|
||||
fetchPypi,
|
||||
fetchpatch,
|
||||
|
|
@ -108,6 +109,11 @@ buildPythonPackage rec {
|
|||
"nltk/test/unit/test_downloader.py" # Touches network
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# ModuleNotFoundError: No module named '_tkinter'
|
||||
"test_chartparser_app_uses_pickle_load_not_pickle_load_standard"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "nltk" ];
|
||||
|
||||
passthru = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue