mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
528354e66c
Folds the cython_3 attribute into the primary cython attribute and migrates all packages from the versioned attribute. The old version will be provided through the cython_0 attribute in an effort to phase it out.
84 lines
1.5 KiB
Nix
84 lines
1.5 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.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-7ti0TW9ch70pWySqmi4OTm3GqQXM7gGy1ByPvwp2ez0=";
|
|
};
|
|
|
|
patches = [
|
|
(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 ];
|
|
};
|
|
}
|