pythonPackages.yt: init at 3.5.1

This commit is contained in:
Chris Ostrouchov 2019-07-14 18:35:44 -04:00 committed by Frederik Rietdijk
parent ceaf12fd6e
commit b965b4b7ae
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, fetchPypi
, matplotlib
, setuptools
, sympy
, numpy
, ipython
, hdf5
, nose
, cython
, python
}:
buildPythonPackage rec {
pname = "yt";
version = "3.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "c8ef8eceb934dc189d63dc336109fad3002140a9a32b19f38d1812d5d5a30d71";
};
buildInputs = [
cython
];
propagatedBuildInputs = [
matplotlib
setuptools
sympy
numpy
ipython
hdf5
];
checkInputs = [
nose
];
checkPhase = ''
cd $out/${python.sitePackages}
HOME=$(mktemp -d) nosetests yt
'';
meta = with lib; {
description = "An analysis and visualization toolkit for volumetric data";
homepage = https://github.com/yt-project/yt;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -1172,6 +1172,8 @@ in {
yarg = callPackage ../development/python-modules/yarg { };
yt = callPackage ../development/python-modules/yt { };
# packages defined here
aafigure = callPackage ../development/python-modules/aafigure { };