1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00
nixpkgs/pkgs/development/python-modules/breathe/default.nix

22 lines
506 B
Nix
Raw Normal View History

{ 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";
md5 = "e35f6ce54485663857129370047f6057";
};
propagatedBuildInputs = [ docutils six sphinx ];
meta = {
homepage = https://github.com/michaeljones/breathe;
license = lib.licenses.bsd3;
description = "Sphinx Doxygen renderer";
inherit (sphinx.meta) platforms;
};
}