Files
nixpkgs/pkgs/development/python-modules/breathe/default.nix
T

25 lines
593 B
Nix
Raw Normal View History

{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx, isPy3k }:
2016-07-08 14:54:44 +02:00
buildPythonPackage rec {
2017-05-27 14:24:47 +02:00
version = "4.6.0";
2017-05-27 11:25:35 +02:00
pname = "breathe";
name = "${pname}-${version}";
2016-07-08 14:54:44 +02:00
src = fetchurl {
url = "mirror://pypi/b/breathe/${name}.tar.gz";
2017-05-27 14:24:47 +02:00
sha256 = "9db2ba770f824da323b9ea3db0b98d613a4e0af094c82ccb0a82991da81b736a";
2016-07-08 14:54:44 +02:00
};
propagatedBuildInputs = [ docutils six sphinx ];
disabled = isPy3k;
2016-07-08 14:54:44 +02:00
meta = {
homepage = https://github.com/michaeljones/breathe;
license = lib.licenses.bsd3;
description = "Sphinx Doxygen renderer";
inherit (sphinx.meta) platforms;
};
}