python310Packages.jedi: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-14 08:47:02 +01:00 committed by GitHub
parent 28ba469101
commit 332debee1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ buildPythonPackage rec {
pname = "jedi";
version = "0.18.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
@ -47,8 +48,9 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://github.com/davidhalter/jedi";
description = "An autocompletion tool for Python that can be used for text editors";
homepage = "https://github.com/davidhalter/jedi";
changelog = "https://github.com/davidhalter/jedi/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};