Merge pull request #10718 from FRidh/python

python: nbconvert update and new tabulate package

Changed files
+25 -2
pkgs
+25 -2
pkgs/top-level/python-packages.nix
···
};
nbconvert = buildPythonPackage rec {
-
version = "4.0.0";
+
version = "4.1.0";
name = "nbconvert-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/n/nbconvert/${name}.tar.gz";
-
sha256 = "472ad15d1a71f1ef00c4094c11bb93638858fc89fb2c5838b3aa6b67d981b437";
+
sha256 = "e0296e45293dd127d028f678e3b6aba3f1db3283a134178bdb49eea402d4cf1c";
};
buildInputs = with self; [nose];
···
# doCheck = false;
# };
+
+
tabulate = buildPythonPackage rec {
+
version = "0.7.5";
+
name = "tabulate-${version}";
+
+
src = pkgs.fetchurl {
+
url = "https://pypi.python.org/packages/source/t/tabulate/${name}.tar.gz";
+
sha256 = "9071aacbd97a9a915096c1aaf0dc684ac2672904cd876db5904085d6dac9810e";
+
};
+
+
buildInputs = with self; [ nose ];
+
+
# Tests: cannot import common (relative import).
+
doCheck = false;
+
+
meta = {
+
description = "Pretty-print tabular data";
+
homepage = https://bitbucket.org/astanin/python-tabulate;
+
license = licenses.mit;
+
maintainer = with maintainers; [ fridh ];
+
};
+
+
};
targetcli_fb = buildPythonPackage rec {
version = "2.1.fb33";