ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytest-error-for-skips / default.nix
blob60d3f16a1c9714398a6cd0c5e54221fcc62b4b8e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytest
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "pytest-error-for-skips";
10   version = "2.0.2";
12   src = fetchFromGitHub {
13     owner = "jankatins";
14     repo = pname;
15     rev = version;
16     sha256 = "04i4jd3bg4lgn2jfh0a0dzg3ml9b2bjv2ndia6b64w96r3r4p3qr";
17   };
19   buildInputs = [ pytest ];
21   checkInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "pytest_error_for_skips" ];
25   meta = with lib; {
26     description = "Pytest plugin to treat skipped tests a test failures";
27     homepage = "https://github.com/jankatins/pytest-error-for-skips";
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30   };