about summary refs log tree commit diff
path: root/pkgs/development/python-modules/glueviz/default.nix
blob: 1db27a1d72823d5102882fa4a886b37845a63721 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  dill,
  astropy,
  numpy,
  pandas,
  qt6,
  pyqt6,
  pyqt-builder,
  qtconsole,
  setuptools,
  setuptools-scm,
  scipy,
  ipython,
  ipykernel,
  h5py,
  matplotlib,
  xlrd,
  mpl-scatter-density,
  pvextractor,
  openpyxl,
  echo,
  pytest,
  pytest-flakes,
  pytest-cov,
}:

buildPythonPackage rec {
  pname = "glueviz";
  version = "1.21.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "glue-viz";
    repo = "glue";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-C9UqDdhPcaznidiDlQO27Vgct2MT9gVlH740hoYg3Bc=";
  };

  buildInputs = [ pyqt-builder ];
  nativeBuildInputs = [
    setuptools
    setuptools-scm
    qt6.wrapQtAppsHook
  ];
  propagatedBuildInputs = [
    astropy
    dill
    setuptools
    scipy
    numpy
    matplotlib
    pandas
    pyqt6
    qtconsole
    ipython
    ipykernel
    h5py
    xlrd
    mpl-scatter-density
    pvextractor
    openpyxl
    echo
  ];

  dontConfigure = true;

  # collecting ... qt.qpa.xcb: could not connect to display
  # qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
  doCheck = false;

  nativeCheckInputs = [
    pytest
    pytest-flakes
    pytest-cov
  ];

  pythonImportsCheck = [ "glue" ];

  preFixup = ''
    makeWrapperArgs+=("''${qtWrapperArgs[@]}")
  '';

  meta = with lib; {
    homepage = "https://glueviz.org";
    description = "Linked Data Visualizations Across Multiple Files";
    license = licenses.bsd3; # https://github.com/glue-viz/glue/blob/main/LICENSE
    maintainers = with maintainers; [ ifurther ];
  };
}