1{ lib 2, buildPythonPackage 3, fetchPypi 4, sphinx 5, sphinxcontrib-serializinghtml 6}: 7 8buildPythonPackage 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}