mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.nltk: skip failing test on darwin
This commit is contained in:
parent
e163fd3d3b
commit
a56d36b39b
1 changed files with 6 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
pkgs,
|
||||
fetchFromGitHub,
|
||||
buildPythonPackage,
|
||||
|
|
@ -100,6 +101,11 @@ buildPythonPackage (finalAttrs: {
|
|||
"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