python39Packages.sphinxcontrib-programoutput: init at 0.17
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, sphinx
|
||||
, sphinxcontrib-serializinghtml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-programoutput";
|
||||
version = "0.17";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-MA7puMrug1XSXMdLTRx+/RLmCNKtFl4xQdMeb7wVK38=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
sphinx
|
||||
];
|
||||
|
||||
# fails to import sphinxcontrib.serializinghtml
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "sphinxcontrib.programoutput" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sphinx extension to include program output";
|
||||
homepage = "https://github.com/NextThought/sphinxcontrib-programoutput";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
||||
@@ -9358,6 +9358,8 @@ in {
|
||||
inherit (pkgs) plantuml;
|
||||
};
|
||||
|
||||
sphinxcontrib-programoutput = callPackage ../development/python-modules/sphinxcontrib-programoutput { };
|
||||
|
||||
sphinxcontrib-qthelp = callPackage ../development/python-modules/sphinxcontrib-qthelp { };
|
||||
|
||||
sphinxcontrib-serializinghtml = callPackage ../development/python-modules/sphinxcontrib-serializinghtml { };
|
||||
|
||||
Reference in New Issue
Block a user