Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 570 B view raw
1{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }: 2 3buildPythonPackage rec { 4 version = "4.20.0"; 5 pname = "breathe"; 6 disabled = isPy27; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "d7e1e1ee9b0615423b7e9abc64f0afe12e7bcf32c817a8fd1d9c8c3c4b3d71c9"; 11 }; 12 13 propagatedBuildInputs = [ docutils six sphinx ]; 14 15 doCheck = !isPy3k; 16 17 meta = { 18 homepage = "https://github.com/michaeljones/breathe"; 19 license = lib.licenses.bsd3; 20 description = "Sphinx Doxygen renderer"; 21 inherit (sphinx.meta) platforms; 22 }; 23} 24