1 { lib, buildPythonPackage, fetchPypi, isPy27
18 buildPythonPackage rec {
24 inherit pname version;
25 sha256 = "ff72adc6dbb85db6981324e226fff77830da57d7fe7e4adb2cafd9dc2a8bfa7d";
28 propagatedBuildInputs = [
44 checkInputs = [ pytest ];
45 # almost all tests have to deal with downloading a dataset, only test pure tests
47 pytest tests/test_text_utils.py \
50 tests/datasets/test_base_dataset.py
54 # scikit-learn in pythonPackages is too new for textacy
55 # remove as soon as textacy support scikit-learn >= 0.24
57 description = "Higher-level text processing, built on spaCy";
58 homepage = "https://textacy.readthedocs.io/";
59 license = licenses.asl20;
60 maintainers = with maintainers; [ rvl ];