3
0
Fork 0
forked from mirrors/nixpkgs

jupyter_console: init at 4.0.3

This commit is contained in:
Asko Soukka 2015-10-23 21:00:03 +03:00
parent e8daff2157
commit 02e14c4ffa

View file

@ -4528,6 +4528,29 @@ let
};
};
jupyter_console = buildPythonPackage rec {
version = "4.0.3";
name = "jupyter_console-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/j/jupyter_console/jupyter_console-4.0.3.tar.gz";
sha256 = "555be6963a8f6431fbe1d424c7ffefee90824758058e4c9a2ab3aa045948eb85";
};
propagatedBuildInputs = with self; [
jupyter_client
ipython
ipykernel
];
meta = {
description = "Jupyter terminal console";
homepage = "http://jupyter.org/";
license = licenses.bsd3;
platforms = platforms.all;
};
};
lti = buildPythonPackage rec {
version = "0.4.0";
name = "PyLTI-${version}";