1{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k }: 2 3buildPythonPackage rec { 4 version = "4.10.0"; 5 pname = "breathe"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "e94370b8b607a32d9611ed8246e635f02c21dc6847f04e888a00f66a12694eff"; 10 }; 11 12 propagatedBuildInputs = [ docutils six sphinx ]; 13 14 doCheck = !isPy3k; 15 16 meta = { 17 homepage = https://github.com/michaeljones/breathe; 18 license = lib.licenses.bsd3; 19 description = "Sphinx Doxygen renderer"; 20 inherit (sphinx.meta) platforms; 21 }; 22} 23