summary refs log tree commit diff
path: root/pkgs/development/python-modules/marionette-harness
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-16 16:44:23 -0400
committerFranz Pletz <fpletz@fnordicwalking.de>2017-09-18 07:35:18 +0200
commitcbea57b9c726e2a7b4d02bc0232fc40c46237fe7 (patch)
treeb789bb4c4557826c52ae290bfdfec16539e22285 /pkgs/development/python-modules/marionette-harness
parentd355b55e82bc8b4e6d604c3d6f44142e0a6f0942 (diff)
downloadnixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.tar
nixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.tar.gz
nixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.tar.bz2
nixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.tar.lz
nixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.tar.xz
nixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.tar.zst
nixlib-cbea57b9c726e2a7b4d02bc0232fc40c46237fe7.zip
marionette-driver: disable for python 3
Diffstat (limited to 'pkgs/development/python-modules/marionette-harness')
-rw-r--r--pkgs/development/python-modules/marionette-harness/marionette_driver.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/marionette-harness/marionette_driver.nix b/pkgs/development/python-modules/marionette-harness/marionette_driver.nix
index 3f4e4e175816..d3eab83eea86 100644
--- a/pkgs/development/python-modules/marionette-harness/marionette_driver.nix
+++ b/pkgs/development/python-modules/marionette-harness/marionette_driver.nix
@@ -2,6 +2,7 @@
 , stdenv
 , buildPythonPackage
 , fetchPypi
+, isPy3k
 , mozversion
 , mozrunner
 }:
@@ -10,6 +11,7 @@ buildPythonPackage rec {
   pname = "marionette_driver";
   version = "2.3.0";
   name = "${pname}-${version}";
+  disabled = isPy3k;
 
   src = fetchPypi {
     inherit pname version;