pythonPackages.nbformat: 4.0.1 -> 4.2.0

This commit is contained in:
Frederik Rietdijk 2017-02-01 14:43:36 +01:00
parent 286a7eb59b
commit ac5df23fcf

View file

@ -15509,16 +15509,19 @@ in {
};
nbformat = buildPythonPackage rec {
version = "4.0.1";
version = "4.2.0";
name = "nbformat-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/n/nbformat/${name}.tar.gz";
sha256 = "5261c957589b9dfcd387c338d59375162ba9ca82c69e378961a1f4e641285db5";
sha256 = "389a5b630a30539074f238a48fb9864592f63d611baccfa2ffaf14ffe239de06";
};
LC_ALL="en_US.UTF-8";
buildInputs = with self; [ pytest pkgs.glibcLocales ];
propagatedBuildInputs = with self; [ipython_genutils traitlets testpath jsonschema jupyter_core];
buildInputs = with self; [ nose ];
propagatedBuildInputs = with self; [ipython_genutils traitlets jsonschema jupyter_core];
# Failing tests and permission issues
doCheck = false;
meta = {
description = "The Jupyter Notebook format";