depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-resource-path/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
947 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
colorama,
pytest,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-resource-path";
version = "1.3.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "yukihiko-shinoda";
repo = pname;
rev = "v${version}";
sha256 = "1siv3pk4fsabz254fdzr7c0pxy124habnbw4ym66pfk883fr96g2";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "pytest-runner" ""
'';
buildInputs = [ pytest ];
propagatedBuildInputs = [ colorama ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_resource_path" ];
meta = with lib; {
description = "Pytest plugin to provide path for uniform access to test resources";
homepage = "https://github.com/yukihiko-shinoda/pytest-resource-path";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}