python3Packages.jaraco-context: 6.0.1 -> 6.1.0

https://github.com/jaraco/jaraco.context/blob/v6.1.0/CHANGES.rst

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:19:21 +01:00
parent 1107200f48
commit b02c678f02
@@ -9,16 +9,20 @@
buildPythonPackage rec {
pname = "jaraco-context";
version = "6.0.1";
version = "6.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.context";
tag = "v${version}";
hash = "sha256-WXZX2s9Qehp0F3bSv2c5lGxhhn6HKFkABbtYKizG1/8=";
hash = "sha256-2UYG1xXnH1kjYNvB6EKJPRZJ1Zd0yYhTDBTdrNFN1p4=";
};
postPatch = ''
sed -i "/coherent.licensed/d" pyproject.toml
'';
pythonNamespaces = [ "jaraco" ];
build-system = [ setuptools-scm ];
@@ -33,7 +37,7 @@ buildPythonPackage rec {
meta = {
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";
changelog = "https://github.com/jaraco/jaraco.context/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};