Unverified Commit 7e009332 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #282312 from r-ryantm/auto-update/python312Packages.pytest-check

python312Packages.pytest-check: 2.2.4 -> 2.3.1
parents 9335cfd3 a3ebfea6
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -8,20 +8,20 @@

buildPythonPackage rec {
  pname = "pytest-check";
  version = "2.2.4";
  format = "pyproject";
  version = "2.3.1";
  pyproject = true;

  src = fetchPypi {
    pname = "pytest_check";
    inherit version;
    hash = "sha256-0uaWYDFB9bLekFuTWD5FmE7DxhzscCZJ3rEL2XSFYLs=";
    hash = "sha256-UbjxiozKpCbF2RPE4ORvAUqqdXlIHqA9Itfh9Jj2ibI=";
  };

  nativeBuildInputs = [
    flit-core
  ];

  propagatedBuildInputs = [
  buildInputs = [
    pytest
  ];

@@ -29,10 +29,15 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "pytest_check"
  ];

  meta = with lib; {
    description = "pytest plugin allowing multiple failures per test";
    homepage = "https://github.com/okken/pytest-check";
    changelog = "https://github.com/okken/pytest-check/releases/tag/${version}";
    license = licenses.mit;
    maintainers = [ maintainers.flokli ];
    maintainers = with maintainers; [ flokli ];
  };
}