pythonPackages.textdistance: init at 4.2.1
Needed by spyder
This commit is contained in:
parent
ba6f0e8f03
commit
5092d5c7a7
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue