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
80 lines
2.0 KiB
Nix
80 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
qt6,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "veusz";
|
|
version = "4.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-s7TaDnt+nEIAmAqiZf9aYPFWVtSX22Ruz8eMpxMRr0U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3Packages.sip
|
|
python3Packages.tomli
|
|
qt6.qmake
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
buildInputs = [ qt6.qtbase ];
|
|
|
|
# veusz is a script and not an ELF-executable, so wrapQtAppsHook will not wrap
|
|
# it automatically -> we have to do it explicitly
|
|
dontWrapQtApps = true;
|
|
preFixup = ''
|
|
wrapQtApp "$out/bin/veusz"
|
|
'';
|
|
|
|
# pyqt_setuptools.py uses the platlib path from sysconfig, but NixOS doesn't
|
|
# really have a corresponding path, so patching the location of PyQt5 inplace
|
|
postPatch = ''
|
|
substituteInPlace pyqt_setuptools.py \
|
|
--replace-fail "get_path('platlib')" "'${python3Packages.pyqt5}/${python3Packages.python.sitePackages}'"
|
|
patchShebangs tests/runselftest.py
|
|
'';
|
|
|
|
# you can find these options at
|
|
# https://github.com/veusz/veusz/blob/53b99dffa999f2bc41fdc5335d7797ae857c761f/pyqtdistutils.py#L71
|
|
setupPyBuildFlags = [
|
|
# veusz tries to find a libinfix and fails without one
|
|
# but we simply don't need a libinfix, so set it to empty here
|
|
"--qt-libinfix="
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
numpy
|
|
pyqt6
|
|
# optional requirements:
|
|
dbus-python
|
|
h5py
|
|
# astropy -- fails to build on master
|
|
# optional TODO: add iminuit, pyemf and sampy
|
|
];
|
|
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
|
|
wrapQtApp "tests/runselftest.py"
|
|
QT_QPA_PLATFORM=minimal tests/runselftest.py
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "Scientific plotting and graphing program with a GUI";
|
|
mainProgram = "veusz";
|
|
homepage = "https://veusz.github.io/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ laikq ];
|
|
};
|
|
}
|