pythonPackages.mayavi: init at 4.7.0
This commit is contained in:
parent
4fb342d6e4
commit
1a6e93f0b2
37
pkgs/development/python-modules/mayavi/default.nix
Normal file
37
pkgs/development/python-modules/mayavi/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage
|
||||||
|
, wxPython, pygments, numpy, vtk, traitsui, envisage, apptools
|
||||||
|
, nose, mock
|
||||||
|
, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "mayavi";
|
||||||
|
version = "4.7.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "tar.bz2";
|
||||||
|
sha256 = "02rg4j1vkny2piqn3f728kg34m54kgx396g6h5y7ykz2lk3f3h44";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Discovery of 'vtk' in setuptools is not working properly, due to a missing
|
||||||
|
# .egg-info in the vtk package. It does however import and run just fine.
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace mayavi/__init__.py --replace "'vtk'" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ wxPython pygments numpy vtk traitsui envisage apptools ];
|
||||||
|
|
||||||
|
checkInputs = [ nose mock ];
|
||||||
|
|
||||||
|
disabled = isPy3k; # TODO: This would need pyqt5 instead of wxPython
|
||||||
|
|
||||||
|
doCheck = false; # Needs X server
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "3D visualization of scientific data in Python";
|
||||||
|
homepage = https://github.com/enthought/mayavi;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
};
|
||||||
|
}
|
@ -4143,6 +4143,8 @@ in {
|
|||||||
|
|
||||||
maya = callPackage ../development/python-modules/maya { };
|
maya = callPackage ../development/python-modules/maya { };
|
||||||
|
|
||||||
|
mayavi = callPackage ../development/python-modules/mayavi { };
|
||||||
|
|
||||||
mccabe = callPackage ../development/python-modules/mccabe { };
|
mccabe = callPackage ../development/python-modules/mccabe { };
|
||||||
|
|
||||||
mechanize = callPackage ../development/python-modules/mechanize { };
|
mechanize = callPackage ../development/python-modules/mechanize { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user