nixpkgs/pkgs/development/python-modules/breathe/default.nix

25 lines
570 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:
buildPythonPackage rec {
2020-06-06 07:46:59 +01:00
version = "4.18.1";
pname = "breathe";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-06-06 07:46:59 +01:00
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;
};
}