summary refs log tree commit diff
path: root/pkgs/development/python-modules/breathe/default.nix
blob: 6e86235cf23cf9c3393deb0590711d891956de24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx }:

buildPythonPackage rec {
  name = "breathe-${version}";
  version = "4.2.0";

  src = fetchurl {
    url = "mirror://pypi/b/breathe/${name}.tar.gz";
    sha256 = "0m3w8yx24nm01xxx6aj08cklnifwlzzmczc5b0ni40l63lhvm3lp";
  };

  propagatedBuildInputs = [ docutils six sphinx ];

  meta = {
    homepage = https://github.com/michaeljones/breathe;
    license = lib.licenses.bsd3;
    description = "Sphinx Doxygen renderer";
    inherit (sphinx.meta) platforms;
  };
}