summary refs log tree commit diff
path: root/pkgs/development/python-modules/breathe
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-08-17 14:22:25 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-08-17 14:24:21 +0200
commitb5af77004ad39ec7461e07c9eadec2d21f13f6e0 (patch)
treec9793866b3dd3166214e1430aadacc19dc8a3c29 /pkgs/development/python-modules/breathe
parent6502f59ae0b00666885e24b95f5eb22e656e3202 (diff)
downloadnixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.tar
nixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.tar.gz
nixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.tar.bz2
nixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.tar.lz
nixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.tar.xz
nixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.tar.zst
nixpkgs-b5af77004ad39ec7461e07c9eadec2d21f13f6e0.zip
python3Packages.breathe: enable with python3
The tests don't work (not sure why), but sphinx seems to work OK.
Diffstat (limited to 'pkgs/development/python-modules/breathe')
-rw-r--r--pkgs/development/python-modules/breathe/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix
index 08d66e539ad..9f4d89da90c 100644
--- a/pkgs/development/python-modules/breathe/default.nix
+++ b/pkgs/development/python-modules/breathe/default.nix
@@ -12,7 +12,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ docutils six sphinx ];
 
-  disabled = isPy3k;
+  doCheck = !isPy3k;
 
   meta = {
     homepage = https://github.com/michaeljones/breathe;