python310Packages.openai: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-03-01 20:30:53 +01:00 committed by GitHub
parent b77e931531
commit 4e43170842
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "openai";
repo = "openai-python";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-pXttGvnApYuwkWU7kCDNjw0rjHD5AyUvujfvpDVjgxM=";
};
@ -91,6 +91,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python client library for the OpenAI API";
homepage = "https://github.com/openai/openai-python";
changelog = "https://github.com/openai/openai-python/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ malo ];
};