mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
python3Packages.mayavi: 4.8.2 -> 4.8.3 (#410843)
This commit is contained in:
commit
4e49917a21
2 changed files with 8 additions and 7 deletions
|
@ -4,7 +4,7 @@
|
|||
buildPythonPackage,
|
||||
envisage,
|
||||
fetchPypi,
|
||||
numpy_1,
|
||||
numpy,
|
||||
packaging,
|
||||
pyface,
|
||||
pygments,
|
||||
|
@ -18,14 +18,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "mayavi";
|
||||
version = "4.8.2";
|
||||
version = "4.8.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-sQ/pFF8hxI5JAvDnRrNgOzy2lNEUVlFaRoIPIaCnQik=";
|
||||
hash = "sha256-72nMvfWPIPGzlJMNXjoW3aSxo5rcvHb3mr0mSD0prPU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ wrapQtAppsHook ];
|
||||
|
@ -33,7 +33,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
apptools
|
||||
envisage
|
||||
numpy_1
|
||||
numpy
|
||||
packaging
|
||||
pyface
|
||||
pygments
|
||||
|
@ -53,6 +53,9 @@ buildPythonPackage rec {
|
|||
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
# stripping the ico file on macos cause segfault
|
||||
stripExclude = [ "*.ico" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "3D visualization of scientific data in Python";
|
||||
homepage = "https://github.com/enthought/mayavi";
|
||||
|
|
|
@ -8659,12 +8659,10 @@ self: super: with self; {
|
|||
|
||||
mayavi = pkgs.libsForQt5.callPackage ../development/python-modules/mayavi {
|
||||
inherit buildPythonPackage pythonOlder pythonAtLeast;
|
||||
# when next release contains numpy2 support unpin
|
||||
# https://github.com/enthought/mayavi/pull/1315
|
||||
inherit (self)
|
||||
pyface
|
||||
pygments
|
||||
numpy_1
|
||||
numpy
|
||||
packaging
|
||||
vtk
|
||||
traitsui
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue