summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-04-24 19:59:48 -0500
committerGitHub <noreply@github.com>2020-04-24 19:59:48 -0500
commit441c16bafb935a69e64e121bcc8ac3d952e03db1 (patch)
tree36ab61273a18400ed3d24bb149c1f78906b46b6d /var
parent89914f521e878e10adc168403e6f3468b6e89945 (diff)
downloadspack-441c16bafb935a69e64e121bcc8ac3d952e03db1.tar.gz
spack-441c16bafb935a69e64e121bcc8ac3d952e03db1.tar.bz2
spack-441c16bafb935a69e64e121bcc8ac3d952e03db1.tar.xz
spack-441c16bafb935a69e64e121bcc8ac3d952e03db1.zip
py-blis: add new package (#16286)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-blis/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-blis/package.py b/var/spack/repos/builtin/packages/py-blis/package.py
new file mode 100644
index 0000000000..ce7f6c4c65
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-blis/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+
+class PyBlis(PythonPackage):
+ """Cython BLIS: Fast BLAS-like operations from Python and Cython,
+ without the tears"""
+
+ homepage = "https://github.com/explosion/cython-blis"
+ url = "https://pypi.io/packages/source/b/blis/blis-0.4.1.tar.gz"
+
+ version('0.4.1', sha256='d69257d317e86f34a7f230a2fd1f021fd2a1b944137f40d8cdbb23bd334cd0c4')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy@1.15:', type=('build', 'run'))
+ depends_on('py-hypothesis', type='test')