{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }: buildPythonPackage rec { version = "4.27.0"; pname = "breathe"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "5b21f86d0cc99d3168f0d9730e07c1438057083ccc9a9c54de322e59e1f4e740"; }; propagatedBuildInputs = [ docutils six sphinx ]; doCheck = !isPy3k; meta = { homepage = "https://github.com/michaeljones/breathe"; license = lib.licenses.bsd3; description = "Sphinx Doxygen renderer"; inherit (sphinx.meta) platforms; }; }