Files
nixpkgs/pkgs/development/python-modules/glueviz/default.nix
T
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

88 lines
1.5 KiB
Nix

{
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 ];
};
}