mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
90 lines
1.8 KiB
Nix
90 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
substituteAll,
|
|
fetchPypi,
|
|
cython,
|
|
fontconfig,
|
|
freetype-py,
|
|
hsluv,
|
|
kiwisolver,
|
|
libGL,
|
|
numpy,
|
|
oldest-supported-numpy,
|
|
packaging,
|
|
pythonOlder,
|
|
setuptools,
|
|
setuptools-scm,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vispy";
|
|
version = "0.14.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-77u4R6kIuvfnFpq5vylhOKOTZPNn5ssKjsA61xaZ0x0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# https://numpy.org/devdocs/dev/depending_on_numpy.html#numpy-2-0-specific-advice
|
|
# upstream enforce builds with numpy 2+, which is backward compat with 1.xx
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "numpy>=2.0.0rc2" "numpy"
|
|
'';
|
|
|
|
patches = lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
|
(substituteAll {
|
|
src = ./library-paths.patch;
|
|
fontconfig = "${fontconfig.lib}/lib/libfontconfig${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
gl = "${libGL.out}/lib/libGL${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
oldest-supported-numpy
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
buildInputs = [ libGL ];
|
|
|
|
propagatedBuildInputs = [
|
|
freetype-py
|
|
hsluv
|
|
kiwisolver
|
|
numpy
|
|
packaging
|
|
];
|
|
|
|
doCheck = false; # otherwise runs OSX code on linux.
|
|
|
|
pythonImportsCheck = [
|
|
"vispy"
|
|
"vispy.color"
|
|
"vispy.geometry"
|
|
"vispy.gloo"
|
|
"vispy.glsl"
|
|
"vispy.io"
|
|
"vispy.plot"
|
|
"vispy.scene"
|
|
"vispy.util"
|
|
"vispy.visuals"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Interactive scientific visualization in Python";
|
|
homepage = "https://vispy.org/index.html";
|
|
changelog = "https://github.com/vispy/vispy/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ goertzenator ];
|
|
};
|
|
}
|