summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2017-02-28 17:17:43 +0100
committerAdam J. Stewart <ajstewart426@gmail.com>2017-02-28 10:17:43 -0600
commit25f10cca481798f079031796a27b5de6a32b1875 (patch)
tree50f9741adbf2325d0eacc90a33eef2cb98cf3d76 /var
parenta43f2a49cb977161d87630a55619c05f61f8d1fd (diff)
downloadspack-25f10cca481798f079031796a27b5de6a32b1875.tar.gz
spack-25f10cca481798f079031796a27b5de6a32b1875.tar.bz2
spack-25f10cca481798f079031796a27b5de6a32b1875.tar.xz
spack-25f10cca481798f079031796a27b5de6a32b1875.zip
add package py-xarray (#3259)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-xarray/package.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-xarray/package.py b/var/spack/repos/builtin/packages/py-xarray/package.py
new file mode 100644
index 0000000000..4f29d6c91e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-xarray/package.py
@@ -0,0 +1,38 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class PyXarray(PythonPackage):
+ """N-D labeled arrays and datasets in Python"""
+
+ homepage = "https://github.com/pydata/xarray"
+ url = "https://pypi.io/packages/source/x/xarray/xarray-0.9.1.tar.gz"
+
+ version('0.9.1', '24cc99f19da95427604846c9d1e20e70')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pandas@0.15.0:', type=('build', 'run'))
+ depends_on('py-numpy@1.7:', type=('build', 'run'))