8 buildPythonPackage rec {
9 pname = "pytest-datadir";
13 src = fetchFromGitHub {
15 repo = "pytest-datadir";
16 rev = "refs/tags/${version}";
17 sha256 = "sha256-HyJ0rU1nHqRv8SHFS8m3GZ5409+JZIkoDgIVjy4ol54=";
20 SETUPTOOLS_SCM_PRETEND_VERSION = version;
21 nativeBuildInputs = [ setuptools-scm ];
22 checkInputs = [ pytestCheckHook ];
23 pythonImportsCheck = [ "pytest_datadir" ];
26 description = "Pytest plugin for manipulating test data directories and files";
27 homepage = "https://github.com/gabrielcnr/pytest-datadir";
28 license = licenses.mit;
29 maintainers = with maintainers; [ kira-bruneau ];