pythonPackages.textdistance: init at 4.2.1

Needed by spyder
This commit is contained in:
Eduardo Sánchez Muñoz 2021-04-27 17:55:16 +02:00
parent ba6f0e8f03
commit 5092d5c7a7
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "textdistance";
version = "4.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "114j3ignw4y9yq1cp08p4bfw518vyr3p0h8ba2mikwy74qxxzy26";
};
# There aren't tests
doCheck = false;
pythonImportsCheck = [ "textdistance" ];
meta = with lib; {
description = "Python library for comparing distance between two or more sequences";
homepage = "https://github.com/life4/textdistance";
license = licenses.mit;
maintainers = with maintainers; [ eduardosm ];
};
}

View file

@ -7962,6 +7962,8 @@ in {
test-tube = callPackage ../development/python-modules/test-tube { };
textdistance = callPackage ../development/python-modules/textdistance { };
textacy = callPackage ../development/python-modules/textacy { };
texttable = callPackage ../development/python-modules/texttable { };