14 oldest-supported-numpy,
22 buildPythonPackage rec {
27 disabled = pythonOlder "3.7";
30 inherit pname version;
31 hash = "sha256-77u4R6kIuvfnFpq5vylhOKOTZPNn5ssKjsA61xaZ0x0=";
34 patches = lib.optionals (!stdenv.hostPlatform.isDarwin) [
36 src = ./library-paths.patch;
37 fontconfig = "${fontconfig.lib}/lib/libfontconfig${stdenv.hostPlatform.extensions.sharedLibrary}";
38 gl = "${libGL.out}/lib/libGL${stdenv.hostPlatform.extensions.sharedLibrary}";
44 oldest-supported-numpy
50 buildInputs = [ libGL ];
52 propagatedBuildInputs = [
60 doCheck = false; # otherwise runs OSX code on linux.
62 pythonImportsCheck = [
76 description = "Interactive scientific visualization in Python";
77 homepage = "https://vispy.org/index.html";
78 changelog = "https://github.com/vispy/vispy/blob/v${version}/CHANGELOG.md";
79 license = licenses.bsd3;
80 maintainers = with maintainers; [ goertzenator ];