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

24 lines
539 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k }:
2016-07-08 14:54:44 +02:00
buildPythonPackage rec {
2018-08-13 09:22:41 +02:00
version = "4.10.0";
2017-05-27 11:25:35 +02:00
pname = "breathe";
2016-07-08 14:54:44 +02:00
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2018-08-13 09:22:41 +02:00
sha256 = "e94370b8b607a32d9611ed8246e635f02c21dc6847f04e888a00f66a12694eff";
2016-07-08 14:54:44 +02:00
};
propagatedBuildInputs = [ docutils six sphinx ];
doCheck = !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;
};
}