push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,90 @@
{
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.23.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "glue-viz";
repo = "glue";
tag = "v${version}";
hash = "sha256-Ql5eMyMm48zNLQ3tkPyqM4+r3QfxqVAGHx1/LcLUiyo=";
};
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 ];
};
}