Merge pull request #258772 from r-ryantm/auto-update/python310Packages.textdistance

python310Packages.textdistance: 4.5.0 -> 4.6.0
This commit is contained in:
Fabian Affolter 2023-10-06 09:30:36 +02:00 committed by GitHub
commit ece34cea00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,32 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "textdistance";
version = "4.5.0";
version = "4.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Nk1D9PZjV0JmLj5s9TcqhoWUFshKPJsu+dZtRPWkOFw=";
hash = "sha256-cyxQMVzU7pRjg4ZDzxnWkiEwLDYDHqpgcMMMwKpdqMo=";
};
# There aren't tests
doCheck = false;
pythonImportsCheck = [ "textdistance" ];
pythonImportsCheck = [
"textdistance"
];
meta = with lib; {
description = "Python library for comparing distance between two or more sequences";
homepage = "https://github.com/life4/textdistance";
changelog = "https://github.com/life4/textdistance/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};