about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sphinx-pytest/default.nix
blob: a034b2b3f01d7f59355a6c1693b8154a374cd9d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytest
, sphinx
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "sphinx-pytest";
  version = "0.1.1";

  src = fetchFromGitHub {
    owner = "chrisjsewell";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-26cV6mfNos/1YLhz5aVQVb54qsiyHWdcHtvmmSzMurk=";
  };

  format = "pyproject";

  nativeBuildInputs = [ flit-core ];

  propagatedBuildInputs = [
    sphinx
  ];

  buildInputs = [
    pytest
  ];

  pythonImportsCheck = [ "sphinx_pytest" ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Helpful pytest fixtures for Sphinx extensions";
    homepage = "https://github.com/chrisjsewell/sphinx-pytest";
    license = licenses.mit;
    maintainers = with maintainers; [ loicreynier ];
  };
}