Commit b49a7ff3 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.recordlinkage: add changelog to meta

parent 1f8b5a27
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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 ];
  };
}