mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #10718 from FRidh/python
python: nbconvert update and new tabulate package
This commit is contained in:
commit
82b9692f12
1 changed files with 25 additions and 2 deletions
|
@ -9449,12 +9449,12 @@ let
|
|||
};
|
||||
|
||||
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];
|
||||
|
@ -16746,6 +16746,29 @@ let
|
|||
# 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";
|
||||
name = "targetcli-fb-${version}";
|
||||
|
|
Loading…
Reference in a new issue