nixpkgs/pkgs/development/python-modules/textacy/default.nix
2018-02-26 19:03:29 +01:00

66 lines
1 KiB
Nix

{ stdenv
, buildPythonPackage
, isPy27
, fetchPypi
, cachetools
, cld2-cffi
, cython
, cytoolz
, ftfy
, ijson
, matplotlib
, networkx
, numpy
, pyemd
, pyphen
, python-Levenshtein
, requests
, scikitlearn
, scipy
, spacy
, tqdm
, unidecode
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "textacy";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "70ebd8f6536c1536132c997988a4f27731a2db5a7ca7bab29fb33746b444959f";
};
disabled = isPy27; # 2.7 requires backports.csv
propagatedBuildInputs = [
cachetools
cld2-cffi
cytoolz
ftfy
ijson
matplotlib
networkx
numpy
pyemd
pyphen
python-Levenshtein
requests
scikitlearn
scipy
spacy
tqdm
unidecode
];
doCheck = false; # tests want to download data files
meta = with stdenv.lib; {
description = "Higher-level text processing, built on spaCy";
homepage = "http://textacy.readthedocs.io/";
license = licenses.asl20;
maintainers = with maintainers; [ rvl ];
};
}