10 buildPythonPackage rec {
11 pname = "pytest-resource-path";
13 format = "setuptools";
14 disabled = pythonOlder "3.5";
16 src = fetchFromGitHub {
17 owner = "yukihiko-shinoda";
20 sha256 = "1siv3pk4fsabz254fdzr7c0pxy124habnbw4ym66pfk883fr96g2";
24 substituteInPlace setup.cfg \
25 --replace "pytest-runner" ""
32 propagatedBuildInputs = [
40 pythonImportsCheck = [
41 "pytest_resource_path"
45 description = "Pytest plugin to provide path for uniform access to test resources";
46 homepage = "https://github.com/yukihiko-shinoda/pytest-resource-path";
47 license = licenses.mit;
48 maintainers = with maintainers; [ fab ];