Skip to content
Snippets Groups Projects

update branch

Merged Eleni Mathioulaki requested to merge master into test-spacktests-workaround
5 files
+ 25
20
Compare changes
  • Side-by-side
  • Inline
Files
5
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Copyright 2013-2023 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 BiobbCommon(PythonPackage):
@@ -10,15 +11,12 @@ class BiobbCommon(PythonPackage):
# Homepage and download url
homepage = "https://github.com/bioexcel/biobb_common"
#url = "https://github.com/bioexcel/biobb_common/tarball/v3.7.0"
git = 'https://github.com/bioexcel/biobb_common.git'
url = "https://github.com/bioexcel/biobb_common/archive/refs/tags/v3.8.1.tar.gz"
# FIXME: Add a list of GitHub accounts to
# notify when the package is updated.
# maintainers = ['github_user1', 'github_user2']
maintainers = ['dbeltran']
# Versions
version('3.8.1', branch='master')
version('3.8.1', sha256='b6c939c1445ea2f8282e491e0414cc15f4934466ca24ecd77e24cef2e7df49e4')
# Dependencies
depends_on('py-setuptools')
@@ -26,3 +24,4 @@ class BiobbCommon(PythonPackage):
depends_on('py-pyyaml', type=('build', 'run'))
depends_on('py-requests', type=('build', 'run'))
depends_on('py-biopython@1.78:1.80', type=('build', 'run'))