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