about summary refs log tree commit diff
path: root/pkgs/development/python-modules/blivet
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-02-24 15:23:45 +0100
committerPeter Simons <simons@cryp.to>2015-02-24 15:23:45 +0100
commita250e9b9087af2f407f6181cf33b3db90173dbad (patch)
tree32ea8532e9ba5209447876a5d10fa1065e3a4126 /pkgs/development/python-modules/blivet
parent3009cc116e07c5e397ad00e3fd16fac9f193e157 (diff)
downloadnixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.tar
nixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.tar.gz
nixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.tar.bz2
nixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.tar.lz
nixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.tar.xz
nixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.tar.zst
nixlib-a250e9b9087af2f407f6181cf33b3db90173dbad.zip
python-packages.nix: updated 'disabled' attributes to reduce the number of evaluation errors in http://hydra.nixos.org/jobset/nixpkgs/trunk#tabs-errors
Diffstat (limited to 'pkgs/development/python-modules/blivet')
-rw-r--r--pkgs/development/python-modules/blivet/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/blivet/default.nix b/pkgs/development/python-modules/blivet/default.nix
index f84c836c056f..93dbb8634f65 100644
--- a/pkgs/development/python-modules/blivet/default.nix
+++ b/pkgs/development/python-modules/blivet/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, buildPythonPackage, pykickstart, pyparted, pyblock
-, pyudev, six, libselinux, cryptsetup, multipath_tools, lsof, utillinux
+, pyudev, six, libselinux, cryptsetup, multipath_tools, lsof, utillinux, isPy3k
 }:
 
 let
@@ -9,6 +9,7 @@ let
 in buildPythonPackage rec {
   name = "blivet-${version}";
   version = "0.67";
+  disabled = isPy3k;            # for urlgrabber
 
   src = fetchFromGitHub {
     owner = "dwlehman";