From c32302514091966797580f17b5ba81f7f81b7e28 Mon Sep 17 00:00:00 2001 From: Raphael Das Gupta Date: Wed, 10 Jan 2018 15:17:47 +0100 Subject: [PATCH] tablib: 0.10.0 -> 0.12.1, re-enable on Python 3 needs some additional build- and runtime dependencies that are also being added to the derivation with this commit --- pkgs/top-level/python-packages.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 29f2905dc930..05b61e572091 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3399,16 +3399,15 @@ in { tablib = buildPythonPackage rec { name = "tablib-${version}"; - version = "0.10.0"; + version = "0.12.1"; src = pkgs.fetchurl { url = "mirror://pypi/t/tablib/tablib-${version}.tar.gz"; - sha256 = "14wc8bmz60g35r6gsyhdzfvgfqpd3gw9lfkq49z5bxciykbxmhj1"; + sha256 = "11wxchj0qz77dn79yiq30k4b4gsm429f4bizk4lm4rb63nk51kxq"; }; - buildInputs = with self; [ pytest ]; - - disabled = isPy3k; + buildInputs = with self; [ pytest unicodecsv pandas ]; + propagatedBuildInputs = with self; [ xlwt openpyxl pyyaml xlrd odfpy ]; meta = with stdenv.lib; { description = "Tablib: format-agnostic tabular dataset library";