tablib: 0.10.0 -> 0.12.1

needs some additional build- and runtime dependencies that are also being added to the derivation with this commit

(cherry picked from commit c32302514091966797580f17b5ba81f7f81b7e28)
This commit is contained in:
Raphael Das Gupta 2018-01-10 15:17:47 +01:00
parent 9858950687
commit d2541c42ba

View file

@ -2917,15 +2917,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 ];
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";
homepage = "http://python-tablib.org";