linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-subtests / default.nix
blobc07832c0b059091b3704c1031bda7070c69d9a9f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 , setuptools-scm
7 }:
9 buildPythonPackage rec {
10   pname = "pytest-subtests";
11   version = "0.4.0";
12   disabled = pythonOlder "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-jZ4sHR3OEfe30snQkgLr/HdXt/8MrJtyrTKO3+fuA3s=";
17   };
19   nativeBuildInputs = [ setuptools-scm ];
21   checkInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "pytest_subtests" ];
25   meta = with lib; {
26     description = "pytest plugin for unittest subTest() support and subtests fixture";
27     homepage = "https://github.com/pytest-dev/pytest-subtests";
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30   };