python311Packages.recordlinkage: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-09-03 09:43:03 +02:00
parent 1f8b5a2795
commit b49a7ff310

View File

@ -41,14 +41,19 @@ buildPythonPackage rec {
# pytestCheckHook does not work
# Reusing their CI setup which involves 'rm -rf recordlinkage' in preCheck phase do not work too.
nativeCheckInputs = [ pytest ];
nativeCheckInputs = [
pytest
];
pythonImportsCheck = [ "recordlinkage" ];
pythonImportsCheck = [
"recordlinkage"
];
meta = with lib; {
description = "Library to link records in or between data sources";
homepage = "https://recordlinkage.readthedocs.io/";
changelog = "https://github.com/J535D165/recordlinkage/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ maintainers.raitobezarius ];
maintainers = with maintainers; [ raitobezarius ];
};
}