about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-09-25 22:02:28 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-09-25 22:02:28 +0200
commita441efcccce769f39714ca008ee1e77682ae43a2 (patch)
tree97c2d4d533e41e437a67a2b0a21daa3cdf71cb13 /pkgs/development/python-modules
parent46ff1c385f04cdadb371a3698533aff093097521 (diff)
downloadnixlib-a441efcccce769f39714ca008ee1e77682ae43a2.tar
nixlib-a441efcccce769f39714ca008ee1e77682ae43a2.tar.gz
nixlib-a441efcccce769f39714ca008ee1e77682ae43a2.tar.bz2
nixlib-a441efcccce769f39714ca008ee1e77682ae43a2.tar.lz
nixlib-a441efcccce769f39714ca008ee1e77682ae43a2.tar.xz
nixlib-a441efcccce769f39714ca008ee1e77682ae43a2.tar.zst
nixlib-a441efcccce769f39714ca008ee1e77682ae43a2.zip
pythonPackages.breathe: disable for Python 3.x
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/breathe/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix
index 6e86235cf23c..d27a65375567 100644
--- a/pkgs/development/python-modules/breathe/default.nix
+++ b/pkgs/development/python-modules/breathe/default.nix
@@ -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;