python310Packages.wn: add changelog to emta

This commit is contained in:
Fabian Affolter 2022-12-31 13:01:36 +01:00 committed by GitHub
parent 9a9024f6b7
commit 128e86cb93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,24 +17,31 @@ buildPythonPackage rec {
hash = "sha256-rqrzGUiF1XQZzE6xicwJ7CJsI7SvWlFT4nDCrhtQUWg=";
};
nativeBuildInputs = [ flit-core ];
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
requests
tomli
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
preCheck = ''
export HOME=$(mktemp -d)
'';
pythonImportsCheck = [ "wn" ];
pythonImportsCheck = [
"wn"
];
meta = with lib; {
description = "A modern, interlingual wordnet interface for Python";
homepage = "https://github.com/goodmami/wn";
changelog = "https://github.com/goodmami/wn/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ zendo ];
};