mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:03:22 +00:00
22 lines
506 B
Nix
22 lines
506 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|
||
|
|