5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
32 lines
693 B
Nix
32 lines
693 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sphinx
|
|
, sphinxcontrib-serializinghtml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-programoutput";
|
|
version = "0.17";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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; [ ];
|
|
};
|
|
}
|