9 buildPythonPackage rec {
10 pname = "pytest-lazy-fixtures";
14 src = fetchFromGitHub {
16 repo = "pytest-lazy-fixtures";
18 hash = "sha256-2gaGIv4vfMdhLXQeYMbbx9B6tIsCGw4rytaO8bfRuEI=";
21 build-system = [ poetry-core ];
23 dependencies = [ pytestCheckHook ];
25 pythonImportsCheck = [ "pytest_lazy_fixtures" ];
28 description = "Allows you to use fixtures in @pytest.mark.parametrize";
29 homepage = "https://github.com/dev-petrov/pytest-lazy-fixtures";
30 license = licenses.mit;