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
This commit is contained in:
Robert Schütz
2026-01-05 03:28:29 -08:00
parent ce16cbe515
commit 3cc8edd2cc
@@ -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 ];
};