python.pkgs.pytest-check: init at 0.3.5
This commit is contained in:
parent
700cc56a0e
commit
97f2b7bfd7
29
pkgs/development/python-modules/pytest-check/default.nix
Normal file
29
pkgs/development/python-modules/pytest-check/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1052,6 +1052,8 @@ in {
|
|||||||
|
|
||||||
pytest-click = callPackage ../development/python-modules/pytest-click { };
|
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-env = callPackage ../development/python-modules/pytest-env { };
|
||||||
|
|
||||||
pytest-flask = callPackage ../development/python-modules/pytest-flask { };
|
pytest-flask = callPackage ../development/python-modules/pytest-flask { };
|
||||||
|
Loading…
Reference in New Issue
Block a user