5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
90 lines
1.6 KiB
Nix
90 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
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.21.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "glue-viz";
|
|
repo = "glue";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/awIgfKbDFKM2WFlfpo5f/Px/N1aMXkV9eSTXts0aGo=";
|
|
};
|
|
|
|
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 = 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 ];
|
|
};
|
|
}
|