+32
pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix
+32
pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix
···
···
1
+
{ lib
2
+
, buildPythonPackage
3
+
, fetchPypi
4
+
, sphinx
5
+
, sphinxcontrib-serializinghtml
6
+
}:
7
+
8
+
buildPythonPackage rec {
9
+
pname = "sphinxcontrib-programoutput";
10
+
version = "0.17";
11
+
12
+
src = fetchPypi {
13
+
inherit pname version;
14
+
sha256 = "sha256-MA7puMrug1XSXMdLTRx+/RLmCNKtFl4xQdMeb7wVK38=";
15
+
};
16
+
17
+
buildInputs = [
18
+
sphinx
19
+
];
20
+
21
+
# fails to import sphinxcontrib.serializinghtml
22
+
doCheck = false;
23
+
24
+
pythonImportsCheck = [ "sphinxcontrib.programoutput" ];
25
+
26
+
meta = with lib; {
27
+
description = "Sphinx extension to include program output";
28
+
homepage = "https://github.com/NextThought/sphinxcontrib-programoutput";
29
+
license = licenses.bsd2;
30
+
maintainers = with maintainers; [ SuperSandro2000 ];
31
+
};
32
+
}
+2
pkgs/top-level/python-packages.nix
+2
pkgs/top-level/python-packages.nix
···
9358
inherit (pkgs) plantuml;
9359
};
9360
9361
+
sphinxcontrib-programoutput = callPackage ../development/python-modules/sphinxcontrib-programoutput { };
9362
+
9363
sphinxcontrib-qthelp = callPackage ../development/python-modules/sphinxcontrib-qthelp { };
9364
9365
sphinxcontrib-serializinghtml = callPackage ../development/python-modules/sphinxcontrib-serializinghtml { };