11 buildPythonPackage rec {
12 pname = "pytest-param-files";
16 src = fetchFromGitHub {
17 owner = "chrisjsewell";
20 hash = "sha256-hgEEfKf9Kmah5WDNHoFWQJKLOs9Z5BDHiebXCdDc1zE=";
23 nativeBuildInputs = [ flit-core ];
25 buildInputs = [ pytest ];
27 propagatedBuildInputs = [ ruamel-yaml ];
29 pythonImportsCheck = [ "pytest_param_files" ];
31 nativeCheckInputs = [ pytestCheckHook ];
34 description = "Package to generate parametrized pytests from external files";
35 homepage = "https://github.com/chrisjsewell/pytest-param-files";
36 license = licenses.mit;
37 maintainers = with maintainers; [ loicreynier ];