pythonPackages.pytest-instafail: init at 0.4.2 (#110138)
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
parent
1cd0cd0b8f
commit
f4213717f5
24
pkgs/development/python-modules/pytest-instafail/default.nix
Normal file
24
pkgs/development/python-modules/pytest-instafail/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user