From 7bc2f2413da67a2fd48802afe7dedc2a3bf4cef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 24 Jan 2016 18:00:29 +0100 Subject: [PATCH] blessings,nose_progressive: bump and fix for py3k --- pkgs/top-level/python-packages.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eb7c60432de..85672ea2f59 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19091,8 +19091,11 @@ in modules // { sha256 = "0mfbjv3dcg23q0a130670g7xpfyvgza4wxkj991xxh8w9hs43ga4"; }; - buildInputs = with self; [ pillow blessings nose ]; - propagatedBuildInputs = with self; [ modules.curses ]; + buildInputs = with self; [ nose ]; + propagatedBuildInputs = with self; [ pillow blessings ]; + + # fails with obscure error + doCheck = !isPy3k; meta = { maintainers = with maintainers; [ iElectric ]; @@ -19100,17 +19103,17 @@ in modules // { }; blessings = buildPythonPackage rec { - name = "blessings-1.5.1"; + name = "blessings-1.6"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/b/blessings/${name}.tar.gz"; - md5 = "fbbddbf20b1f9a13e3fa612b1e086fd8"; + sha256 = "01rhgn2c3xjf9h1lxij9m05iwf2ba6d0vd7nic26c2gic4q73igd"; }; - # 4 failing tests + # 4 failing tests, 2to3 doCheck = false; - buildInputs = with self; [ nose modules.curses ]; + propagatedBuildInputs = with self; [ modules.curses ]; meta = { maintainers = with maintainers; [ iElectric ];