mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.textdistance: init at 4.2.1
Needed by spyder
This commit is contained in:
parent
ba6f0e8f03
commit
5092d5c7a7
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/textdistance/default.nix
Normal file
23
pkgs/development/python-modules/textdistance/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7962,6 +7962,8 @@ in {
|
||||||
|
|
||||||
test-tube = callPackage ../development/python-modules/test-tube { };
|
test-tube = callPackage ../development/python-modules/test-tube { };
|
||||||
|
|
||||||
|
textdistance = callPackage ../development/python-modules/textdistance { };
|
||||||
|
|
||||||
textacy = callPackage ../development/python-modules/textacy { };
|
textacy = callPackage ../development/python-modules/textacy { };
|
||||||
|
|
||||||
texttable = callPackage ../development/python-modules/texttable { };
|
texttable = callPackage ../development/python-modules/texttable { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue