1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

python3Packages.ipython: 7.8.0 -> 7.10.1

This commit is contained in:
Jonathan Ringer 2019-12-14 10:35:16 -08:00 committed by Jon
parent ed5c0443c1
commit 1f7ee3e040

View file

@ -22,12 +22,12 @@
buildPythonPackage rec {
pname = "ipython";
version = "7.8.0";
version = "7.10.1";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "dd76831f065f17bddd7eaa5c781f5ea32de5ef217592cf019e34043b56895aa1";
sha256 = "03h3m64k8jq0cc48i34g8xq0r68cx3w7wz721mfhr7k06qdv11pi";
};
prePatch = lib.optionalString stdenv.isDarwin ''
@ -57,10 +57,14 @@ buildPythonPackage rec {
nosetests
'';
meta = {
pythonImportsCheck = [
"IPython"
];
meta = with lib; {
description = "IPython: Productive Interactive Computing";
homepage = http://ipython.org/;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ bjornfor fridh ];
license = licenses.bsd3;
maintainers = with maintainers; [ bjornfor fridh ];
};
}