python.pkgs.pytest-check: init at 0.3.5

This commit is contained in:
Florian Klink 2019-09-13 17:42:41 -07:00
parent 700cc56a0e
commit 97f2b7bfd7
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-check";
version = "0.3.5";
src = fetchFromGitHub {
owner = "okken";
repo = "pytest-check";
rev = version;
sha256 = "11wb4f4sp4cr5mzqdakrbycwgfr2p1sx1l91fa6525wnfvgc0qy3";
};
buildInputs = [ pytest ];
checkInputs = [ pytest pytestCheckHook ];
meta = with stdenv.lib; {
description = "pytest plugin allowing multiple failures per test";
homepage = https://github.com/okken/pytest-check;
license = licenses.mit;
maintainers = [ maintainers.flokli ];
};
}

View File

@ -1052,6 +1052,8 @@ in {
pytest-click = callPackage ../development/python-modules/pytest-click { };
pytest-check = callPackage ../development/python-modules/pytest-check { };
pytest-env = callPackage ../development/python-modules/pytest-env { };
pytest-flask = callPackage ../development/python-modules/pytest-flask { };