python311Packages.tank-utility: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-10-05 17:46:58 +02:00
parent 492576aca2
commit b4b216fe85

View file

@ -20,16 +20,10 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "krismolendyke";
repo = pname;
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-h9y3X+FSzSFt+bd/chz+x0nocHaKZ8DvreMxAYMs8/E=";
};
postPatch = ''
# urllib3[secure] is not picked-up
substituteInPlace setup.py \
--replace "urllib3[secure]" "urllib3"
'';
propagatedBuildInputs = [
requests
urllib3
@ -49,6 +43,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for the Tank Utility API";
homepage = "https://github.com/krismolendyke/tank-utility";
changelog = "https://github.com/krismolendyke/tank-utility/blob/${version}/HISTORY.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};