python3Packages.mayavi: disable for python 3.11
This commit is contained in:
parent
0775491b8b
commit
956abdcaee
2 changed files with 3 additions and 4 deletions
|
@ -9,6 +9,7 @@
|
|||
, pygments
|
||||
, pyqt5
|
||||
, pythonOlder
|
||||
, pythonAtLeast
|
||||
, traitsui
|
||||
, vtk
|
||||
, wrapQtAppsHook
|
||||
|
@ -18,8 +19,7 @@ buildPythonPackage rec {
|
|||
pname = "mayavi";
|
||||
version = "4.8.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
disabled = pythonOlder "3.8" || pythonAtLeast "3.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
|
@ -6662,8 +6662,7 @@ self: super: with self; {
|
|||
maya = callPackage ../development/python-modules/maya { };
|
||||
|
||||
mayavi = pkgs.libsForQt5.callPackage ../development/python-modules/mayavi {
|
||||
inherit buildPythonPackage pythonOlder;
|
||||
inherit (self) pyface pygments numpy packaging vtk traitsui envisage apptools pyqt5;
|
||||
inherit (self) buildPythonPackage pythonOlder pythonAtLeast pyface pygments numpy packaging vtk traitsui envisage apptools pyqt5;
|
||||
};
|
||||
|
||||
mbddns = callPackage ../development/python-modules/mbddns { };
|
||||
|
|
Loading…
Reference in a new issue