Unverified Commit bfb46acc authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.textstat: 0.7.12 -> 0.7.13 (#496030)

parents 88ac5632 eaf3880f
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -2,14 +2,14 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  cmudict,
  nltk,
  setuptools,
  pyphen,
  pytestCheckHook,
  pytest,
}:
buildPythonPackage rec {
  version = "0.7.12";
  version = "0.7.13";
  pname = "textstat";
  pyproject = true;

@@ -17,7 +17,7 @@ buildPythonPackage rec {
    owner = "textstat";
    repo = "textstat";
    tag = version;
    hash = "sha256-HOYeWpyWPLUEwnj21WfMNmIg9x+jQUtY1o+Sl5zJRq4=";
    hash = "sha256-VMWwhwyGMFaKNLHoDG3gw1/jzSYCDBH3Yq4pE4JZTTo=";
  };

  build-system = [
@@ -32,7 +32,7 @@ buildPythonPackage rec {
  dependencies = [
    setuptools
    pyphen
    cmudict
    nltk
  ];

  pythonImportsCheck = [
@@ -43,6 +43,8 @@ buildPythonPackage rec {
    "tests/"
  ];

  NLTK_DATA = nltk.data.cmudict;

  meta = {
    description = "Python package to calculate readability statistics of a text object";
    homepage = "https://textstat.org";