b732af00bb
It seems to work OK, but I'm not good at packaging python stuff.
21 lines
506 B
Nix
21 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;
|
|
};
|
|
}
|
|
|