summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorOwen Solberg <odoublewen@users.noreply.github.com>2019-09-08 08:37:49 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2019-09-08 10:37:49 -0500
commit4468ee2437e3bb1873d835de2470eace6d3cfe48 (patch)
tree6605beabde78d9ea56a0915cb5d55e43b6110ace /var
parenta2220f31500f93cda3eabbafae0626b18b1c097a (diff)
downloadspack-4468ee2437e3bb1873d835de2470eace6d3cfe48.tar.gz
spack-4468ee2437e3bb1873d835de2470eace6d3cfe48.tar.bz2
spack-4468ee2437e3bb1873d835de2470eace6d3cfe48.tar.xz
spack-4468ee2437e3bb1873d835de2470eace6d3cfe48.zip
py-dnaio: new package need by py-cutadapt (#12743)
* add new package py-dnaio * provide git url with https, not ssh, protocol Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-dnaio/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-dnaio/package.py b/var/spack/repos/builtin/packages/py-dnaio/package.py
new file mode 100644
index 0000000000..f67e6acf00
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-dnaio/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2019 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)
+
+from spack import *
+
+
+class PyDnaio(PythonPackage):
+ """Read and write FASTQ and FASTA"""
+
+ homepage = "https://github.com/marcelm/dnaio"
+ url = "https://pypi.io/packages/source/d/dnaio/dnaio-0.3.tar.gz"
+ git = "https://github.com/marcelm/dnaio.git"
+
+ version('0.3', sha256='47e4449affad0981978fe986684fc0d9c39736f05a157f6cf80e54dae0a92638')
+
+ depends_on('python@3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type=('build', 'run'))
+ depends_on('py-xopen@0.8.2:', type=('build', 'run'))