about summary refs log tree commit diff
path: root/pkgs/development/python-modules/qtconsole/default.nix
blob: b8e1280ceb3d2cc8e7645ab2da69927389f1301d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  lib,
  buildPythonPackage,
  fetchPypi,
  ipykernel,
  jupyter-core,
  jupyter-client,
  pygments,
  pyqt5,
  pytestCheckHook,
  pythonOlder,
  pyzmq,
  qtpy,
  setuptools,
  traitlets,
}:

buildPythonPackage rec {
  pname = "qtconsole";
  version = "5.5.2";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-a1+xEnSyl0Y3Bq+E3LvVySJzsfYZ5tJdCIdLCohRaYk=";
  };

  build-system = [ setuptools ];

  dependencies = [
    ipykernel
    jupyter-core
    jupyter-client
    pygments
    pyqt5
    pyzmq
    qtpy
    traitlets
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  # : cannot connect to X server
  doCheck = false;

  pythonImportsCheck = [ "qtconsole" ];

  meta = with lib; {
    description = "Jupyter Qt console";
    mainProgram = "jupyter-qtconsole";
    homepage = "https://qtconsole.readthedocs.io/";
    license = licenses.bsd3;
    platforms = platforms.unix;
  };
}