python310Packages.jaraco-context: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-24 08:51:13 +01:00
parent 03b3dff5b6
commit 0c9850330d

View File

@ -16,7 +16,7 @@ buildPythonPackage rec {
owner = "jaraco";
repo = "jaraco.context";
rev = "refs/tags/v${version}";
sha256 = "sha256-J7vL+pvwXcKEkqZn44/U01HmP1CI5kIGsJ1aJevp0I4=";
hash = "sha256-J7vL+pvwXcKEkqZn44/U01HmP1CI5kIGsJ1aJevp0I4=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -32,11 +32,14 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "jaraco.context" ];
pythonImportsCheck = [
"jaraco.context"
];
meta = with lib; {
description = "Python module for context management";
homepage = "https://github.com/jaraco/jaraco.context";
changelog = "https://github.com/jaraco/jaraco.context/blob/v${version}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};