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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
astropy,
dill,
echo,
fast-histogram,
h5py,
ipython,
matplotlib,
mpl-scatter-density,
numpy,
openpyxl,
pandas,
pyqt-builder,
pytestCheckHook,
qt6,
scipy,
setuptools,
setuptools-scm,
shapely,
xlrd,
}:
buildPythonPackage rec {
pname = "glueviz";
version = "1.24.1";
pyproject = true;
src = fetchFromGitHub {
owner = "glue-viz";
repo = "glue";
tag = "v${version}";
hash = "sha256-21XFH1fIt8vLd0blZJn6ZRmLJaof/E30zHrBVLjXOaA=";
};
buildInputs = [ pyqt-builder ];
nativeBuildInputs = [ qt6.wrapQtAppsHook ];
build-system = [
setuptools
setuptools-scm
];
dependencies = [
astropy
dill
echo
fast-histogram
h5py
ipython
matplotlib
mpl-scatter-density
numpy
openpyxl
pandas
scipy
setuptools
shapely
xlrd
];
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 = [ pytestCheckHook ];
pythonImportsCheck = [ "glue" ];
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
meta = {
homepage = "https://glueviz.org";
description = "Linked Data Visualizations Across Multiple Files";
license = lib.licenses.bsd3; # https://github.com/glue-viz/glue/blob/main/LICENSE
maintainers = with lib.maintainers; [ ifurther ];
};
}
|