Unverified Commit c7352278 authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

python3Packages.textstat: fix missing cmudict (#437634)

parents 6486adcb 2955e10d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  cmudict,
  setuptools,
  pyphen,
  pytestCheckHook,
@@ -31,6 +32,7 @@ buildPythonPackage rec {
  dependencies = [
    setuptools
    pyphen
    cmudict
  ];

  pythonImportsCheck = [
@@ -38,7 +40,7 @@ buildPythonPackage rec {
  ];

  enabledTestPaths = [
    "test.py"
    "tests/"
  ];

  meta = {