pythonPackages.pytest-instafail: init at 0.4.2 (#110138)

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
Jacek Generowicz 2021-01-20 15:11:15 +01:00 committed by GitHub
parent 1cd0cd0b8f
commit f4213717f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ buildPythonPackage
, fetchPypi
, lib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-instafail";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "10lpr6mjcinabqynj6v85bvb1xmapnhqmg50nys1r6hg7zgky9qr";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_instafail" ];
meta = {
description = "pytest plugin that shows failures and errors instantly instead of waiting until the end of test session";
homepage = "https://github.com/pytest-dev/pytest-instafail";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.jacg ];
};
}

View file

@ -6033,6 +6033,8 @@ in {
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
pytest-instafail = callPackage ../development/python-modules/pytest-instafail { };
pytest-isort = callPackage ../development/python-modules/pytest-isort { };
pytest-lazy-fixture = callPackage ../development/python-modules/pytest-lazy-fixture { };