nixpkgs/pkgs/development/python-modules/breathe/default.nix
Vladimír Čunát b732af00bb pythonPackages.breathe: init at 4.2.0
It seems to work OK, but I'm not good at packaging python stuff.
2016-07-08 14:54:44 +02:00

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;
};
}