blob: 5300528f1fdd3c6877254b3be8ba973f0de47397 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
sphinx,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "sphinxcontrib-programoutput";
version = "0.18";
pyproject = true;
src = fetchFromGitHub {
owner = "NextThought";
repo = "sphinxcontrib-programoutput";
tag = version;
hash = "sha256-WI4R96G4cYYTxTwW4dKAayUNQyhVSrjhdWJyy8nZBUk=";
};
build-system = [ setuptools ];
buildInputs = [ sphinx ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "sphinxcontrib.programoutput" ];
pythonNamespaces = [ "sphinxcontrib" ];
meta = {
description = "Sphinx extension to include program output";
homepage = "https://github.com/NextThought/sphinxcontrib-programoutput";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
|