python310Packages.textnets: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-03-04 12:06:07 +01:00 committed by GitHub
parent 4a114efec9
commit 3b7a3384de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "jboynyc";
repo = pname;
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-BBndY+3leJBxiImuyRL7gMD5eocE4i96+97I9hDEwec=";
};
@ -61,11 +61,14 @@ buildPythonPackage rec {
en_core_web_sm
];
pythonImportsCheck = [ pname ];
pythonImportsCheck = [
"textnets"
];
meta = with lib; {
description = "Text analysis with networks";
homepage = "https://textnets.readthedocs.io";
changelog = "https://github.com/jboynyc/textnets/blob/v${version}/HISTORY.rst";
license = licenses.gpl3Only;
maintainers = with maintainers; [ jboy ];
};