11 buildPythonPackage rec {
12 pname = "pytest-datadir";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
20 repo = "pytest-datadir";
22 hash = "sha256-sRLqL+8Jf5Kz+qscuG3hClUuPA+33PQa+ob1ht/7CJE=";
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "pytest_datadir" ];
35 description = "Pytest plugin for manipulating test data directories and files";
36 homepage = "https://github.com/gabrielcnr/pytest-datadir";
37 changelog = "https://github.com/gabrielcnr/pytest-datadir/blob/v${version}/CHANGELOG.rst";
38 license = licenses.mit;
39 maintainers = with maintainers; [ kira-bruneau ];