11 buildPythonPackage rec {
12 pname = "pytest-resource-path";
14 format = "setuptools";
15 disabled = pythonOlder "3.5";
17 src = fetchFromGitHub {
18 owner = "yukihiko-shinoda";
21 sha256 = "1siv3pk4fsabz254fdzr7c0pxy124habnbw4ym66pfk883fr96g2";
25 substituteInPlace setup.cfg \
26 --replace "pytest-runner" ""
29 buildInputs = [ pytest ];
31 propagatedBuildInputs = [ colorama ];
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "pytest_resource_path" ];
38 description = "Pytest plugin to provide path for uniform access to test resources";
39 homepage = "https://github.com/yukihiko-shinoda/pytest-resource-path";
40 license = licenses.mit;
41 maintainers = with maintainers; [ fab ];