pythonPackages.qtconsole: 4.2.1 -> 4.3.0
This commit is contained in:
parent
92ef3413ac
commit
b1952ff747
2 changed files with 38 additions and 22 deletions
37
pkgs/development/python-modules/qtconsole/default.nix
Normal file
37
pkgs/development/python-modules/qtconsole/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nose
|
||||||
|
, isPy27
|
||||||
|
, mock
|
||||||
|
, traitlets
|
||||||
|
, jupyter_core
|
||||||
|
, jupyter_client
|
||||||
|
, pygments
|
||||||
|
, ipykernel
|
||||||
|
, pyqt5
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "qtconsole";
|
||||||
|
version = "4.3.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "2821ccf85853b83e4958521f82e36325208787eaf79b19b83905a99cc41aa209";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ nose ] ++ lib.optionals isPy27 [mock];
|
||||||
|
propagatedBuildInputs = [traitlets jupyter_core jupyter_client pygments ipykernel pyqt5];
|
||||||
|
|
||||||
|
# : cannot connect to X server
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Jupyter Qt console";
|
||||||
|
homepage = http://jupyter.org/;
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
maintainers = with lib.maintainers; [ fridh ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22209,28 +22209,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
qtconsole = buildPythonPackage rec {
|
qtconsole = callPackage ../development/python-modules/qtconsole { };
|
||||||
version = "4.2.1";
|
|
||||||
name = "qtconsole-${version}";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/q/qtconsole/${name}.tar.gz";
|
|
||||||
sha256 = "1vqqx9hdvrg2d336wjyw0vr5b5v97kflkqqvr7ryicr8als7vv15";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ nose ] ++ optionals isPy27 [mock];
|
|
||||||
propagatedBuildInputs = with self; [traitlets jupyter_core jupyter_client pygments ipykernel pyqt5];
|
|
||||||
|
|
||||||
# : cannot connect to X server
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Jupyter Qt console";
|
|
||||||
homepage = http://jupyter.org/;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [ fridh ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
quantities = buildPythonPackage rec {
|
quantities = buildPythonPackage rec {
|
||||||
name = "quantities-0.10.1";
|
name = "quantities-0.10.1";
|
||||||
|
|
Loading…
Reference in a new issue