summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorilbiondo <61497728+ilbiondo@users.noreply.github.com>2020-04-15 10:35:01 +0200
committerGitHub <noreply@github.com>2020-04-15 10:35:01 +0200
commitd41e366d0d1347f7adda769926ad0c4c2bce640d (patch)
treed66aaca318c5966b31ba5d5181b575e00f618677 /var
parentfd2e6ee50f25a7fa091e494fcca90430a2fde97d (diff)
downloadspack-d41e366d0d1347f7adda769926ad0c4c2bce640d.tar.gz
spack-d41e366d0d1347f7adda769926ad0c4c2bce640d.tar.bz2
spack-d41e366d0d1347f7adda769926ad0c4c2bce640d.tar.xz
spack-d41e366d0d1347f7adda769926ad0c4c2bce640d.zip
py-sonlib: added new package (#16058)
Co-Authored-By: Massimiliano Culpo <massimiliano.culpo@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sonlib/package.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sonlib/package.py b/var/spack/repos/builtin/packages/py-sonlib/package.py
new file mode 100644
index 0000000000..68710835c7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sonlib/package.py
@@ -0,0 +1,28 @@
+# 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)
+
+
+from spack import *
+
+
+class PySonlib(PythonPackage):
+ """Small general purpose library for C and
+ Python with focus on bioinformatics."""
+
+ # Note that there are a few versions of sonLib floating around
+ # the one from the ComparativeGenomicsToolkit seems to be the
+ # actively developed version
+
+ # There are no releases so we have devel and a commit
+ # to fix the code at one point in time (1st April)
+
+ homepage = "https://github.com/ComparativeGenomicsToolkit/sonLib"
+ url = "https://github.com/ComparativeGenomicsToolkit/sonLib"
+ git = "https://github.com/ComparativeGenomicsToolkit/sonLib.git"
+
+ version('devel', branch='master')
+ version('20200401', commit='7ebe2ede05a6ee366d93a7a993db69a99943a68f')
+
+ depends_on('py-setuptools', type='build')