mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
pythonPackages.yt: init at 3.5.1
This commit is contained in:
parent
ceaf12fd6e
commit
b965b4b7ae
52
pkgs/development/python-modules/yt/default.nix
Normal file
52
pkgs/development/python-modules/yt/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user