From 3cc8edd2ccb9d0cadadb74dee3d2a7c516436eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 5 Jan 2026 03:24:45 -0800 Subject: [PATCH] python3Packages.jaraco-test: 5.5.1 -> 5.6.0 Diff: https://github.com/jaraco/jaraco.test/compare/v5.5.1...v5.6.0 Changelog: https://github.com/jaraco/jaraco.test/blob/v5.6.0/NEWS.rst --- .../python-modules/jaraco-test/default.nix | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/pkgs/development/python-modules/jaraco-test/default.nix b/pkgs/development/python-modules/jaraco-test/default.nix index dfd0a2829924..8b4d3572c249 100644 --- a/pkgs/development/python-modules/jaraco-test/default.nix +++ b/pkgs/development/python-modules/jaraco-test/default.nix @@ -1,54 +1,47 @@ { lib, buildPythonPackage, - pythonOlder, fetchFromGitHub, setuptools-scm, - toml, jaraco-functools, jaraco-context, - more-itertools, jaraco-collections, pytestCheckHook, }: buildPythonPackage rec { pname = "jaraco-test"; - version = "5.5.1"; + version = "5.6.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "jaraco"; repo = "jaraco.test"; tag = "v${version}"; - hash = "sha256-jbnU6PFVUd/eD9CWHyJvaTFkcZaIIwztkN9UbQZH1RU="; + hash = "sha256-Ym0r92xCh+DNpFexqPlRVgcDGYNvnaJHEs5/RMaUr+s="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail '"coherent.licensed",' "" + ''; + build-system = [ setuptools-scm ]; dependencies = [ - toml jaraco-functools jaraco-context - more-itertools jaraco-collections ]; nativeCheckInputs = [ pytestCheckHook ]; - disabledTestPaths = [ - # https://github.com/jaraco/jaraco.test/issues/6 - "jaraco/test/cpython.py" - ]; - pythonImportsCheck = [ "jaraco.test" ]; meta = { description = "Testing support by jaraco"; homepage = "https://github.com/jaraco/jaraco.test"; - changelog = "https://github.com/jaraco/jaraco.test/blob/${src.rev}/NEWS.rst"; + changelog = "https://github.com/jaraco/jaraco.test/blob/${src.tag}/NEWS.rst"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; };