aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/marionette-harness/mozinfo.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-08-28 09:13:20 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-08-28 09:14:04 +0100
commit861048c15f681ed8412da6253063c77244a5d871 (patch)
tree2be2f543f4ad4771f75fa50b7805ea8b4e6d49e0 /pkgs/development/python-modules/marionette-harness/mozinfo.nix
parentb24099cb176b3fc1737c53afa24523cab483eaa1 (diff)
python.pkgs.mozinfo: python3 is not supported
Diffstat (limited to '')
-rw-r--r--pkgs/development/python-modules/marionette-harness/mozinfo.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/marionette-harness/mozinfo.nix b/pkgs/development/python-modules/marionette-harness/mozinfo.nix
index d22e92876bf..0240f4ce427 100644
--- a/pkgs/development/python-modules/marionette-harness/mozinfo.nix
+++ b/pkgs/development/python-modules/marionette-harness/mozinfo.nix
@@ -1,7 +1,7 @@
-{ lib
-, stdenv
+{ stdenv
, buildPythonPackage
, fetchPypi
+, isPy3k
, mozfile
}:
@@ -15,9 +15,11 @@ buildPythonPackage rec {
sha256 = "1jwhnhbj7xipwh33wf7m12pw5g662dpr1chkp6p2fmy0mwpn2y4z";
};
- propagatedBuildInputs = [ mozfile ];
+ disabled = isPy3k;
- meta = {
+ propagatedBuildInputs = [ mozfile ];
+
+ meta = with stdenv.lib; {
description = "System information utilities for Mozilla testing";
homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase;
license = lib.licenses.mpl20;