python312Packages.jaraco-test: 5.4.0 -> 5.5.1 (#342916)

This commit is contained in:
Robert Schütz 2024-09-19 12:00:41 -07:00 committed by GitHub
commit 2cfbcf00f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
fetchFromGitHub,
setuptools-scm,
toml,
jaraco-functools,
@ -14,15 +14,16 @@
buildPythonPackage rec {
pname = "jaraco-test";
version = "5.4.0";
version = "5.5.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "jaraco.test";
inherit version;
hash = "sha256-29NDh4dYrcVER9YRXEYXia2zH8QHOyEpUCQwk7oxfsI=";
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.test";
rev = "refs/tags/v${version}";
hash = "sha256-jbnU6PFVUd/eD9CWHyJvaTFkcZaIIwztkN9UbQZH1RU=";
};
build-system = [ setuptools-scm ];
@ -47,7 +48,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Testing support by jaraco";
homepage = "https://github.com/jaraco/jaraco.test";
changelog = "https://github.com/jaraco/jaraco.test/blob/v${version}/CHANGES.rst";
changelog = "https://github.com/jaraco/jaraco.test/blob/${src.rev}/NEWS.rst";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};