9 buildPythonPackage rec {
10 pname = "pytest-raises";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/${version}";
20 hash = "sha256-wmtWPWwe1sFbWSYxs5ZXDUZM1qvjRGMudWdjQeskaz0=";
31 pythonImportsCheck = [
36 # Failed: nomatch: '*::test_pytest_mark_raises_unexpected_exception FAILED*'
37 # https://github.com/Lemmons/pytest-raises/issues/30
38 "test_pytest_mark_raises_unexpected_exception"
39 "test_pytest_mark_raises_unexpected_match"
40 "test_pytest_mark_raises_parametrize"
44 description = "An implementation of pytest.raises as a pytest.mark fixture";
45 homepage = "https://github.com/Lemmons/pytest-raises";
46 license = with licenses; [ mit ];
47 maintainers = with maintainers; [ fab ];