Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, pytest 5, pytestCheckHook 6}: 7 8buildPythonPackage rec { 9 pname = "pytest-check"; 10 version = "0.3.9"; 11 12 src = fetchPypi { 13 pname = "pytest_check"; 14 inherit version; 15 sha256 = "0asrrz0fgk6wqffsz1ffd6z9xyw314fwh5bwjzcq75w8w1g4ass9"; 16 }; 17 18 propagatedBuildInputs = [ pytest ]; 19 checkInputs = [ pytestCheckHook ]; 20 21 meta = with stdenv.lib; { 22 description = "pytest plugin allowing multiple failures per test"; 23 homepage = "https://github.com/okken/pytest-check"; 24 license = licenses.mit; 25 maintainers = [ maintainers.flokli ]; 26 }; 27}