python-packages.nix: updated 'disabled' attributes to reduce the number of evaluation errors in http://hydra.nixos.org/jobset/nixpkgs/trunk#tabs-errors

This commit is contained in:
Peter Simons
2015-02-24 15:23:45 +01:00
parent 3009cc116e
commit a250e9b908
2 changed files with 17 additions and 5 deletions

View File

@@ -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";