python310Packages.textdistance: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-10-05 09:47:20 +02:00 committed by GitHub
parent 3c850146ee
commit e66ba395c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,7 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "textdistance";
@ -12,11 +15,14 @@ buildPythonPackage rec {
# 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; [ ];
};