depot/third_party/nixpkgs/pkgs/development/python-modules/breathe/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

24 lines
570 B
Nix

{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:
buildPythonPackage rec {
version = "4.18.1";
pname = "breathe";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "03f56cc6dd0bf5ac3d8e8eb380d212257e16de79fce5e6186afd5c1835561e22";
};
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;
};
}