pythonPackages.breathe: disable for Python 3.x

This commit is contained in:
Frederik Rietdijk 2016-09-25 22:02:28 +02:00
parent 46ff1c385f
commit a441efcccc

View File

@ -1,4 +1,4 @@
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx }:
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx, isPy3k }:
buildPythonPackage rec {
name = "breathe-${version}";
@ -11,6 +11,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [ docutils six sphinx ];
disabled = isPy3k;
meta = {
homepage = https://github.com/michaeljones/breathe;
license = lib.licenses.bsd3;