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

44 lines
945 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pytest,
sphinx,
defusedxml,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "sphinx-pytest";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "chrisjsewell";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-oSBBt+hSMs4mvGqibQHoYHXr2j/bpsGOnIMfwfTfWKQ=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [ sphinx ];
buildInputs = [ pytest ];
pythonImportsCheck = [ "sphinx_pytest" ];
nativeCheckInputs = [
defusedxml
pytestCheckHook
];
meta = with lib; {
changelog = "https://github.com/sphinx-extensions2/sphinx-pytest/releases/tag/v${version}";
description = "Helpful pytest fixtures for Sphinx extensions";
homepage = "https://github.com/chrisjsewell/sphinx-pytest";
license = licenses.mit;
maintainers = with maintainers; [ loicreynier ];
};
}