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

python312Packages.pytest-check: 2.2.4 -> 2.3.1
This commit is contained in:
Fabian Affolter 2024-01-21 11:09:14 +01:00 committed by GitHub
commit 7e00933285
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];
};
}