Unverified Commit 2cfbcf00 authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

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

parents 6ada4fb2 3339af8a
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -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 ];
  };