summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/snakemake/package.py
blob: 73302ac437432cf48c8d3657d4478fd9122032b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2013-2021 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 Snakemake(PythonPackage):
    """Snakemake is an MIT-licensed workflow management system."""

    homepage = "https://snakemake.readthedocs.io/en/stable/"
    pypi = "snakemake/snakemake-6.12.3.tar.gz"
    maintainers = ['marcusboden']

    version('6.12.3', sha256='af86af9a540da3dceb05dad1040f1d3d733e6a695f8b3f8c30f8cf3bc6570a88')
    version('3.11.2', sha256='f7a3b586bc2195f2dce4a4817b7ec828b6d2a0cff74a04e0f7566dcd923f9761', deprecated=True)

    depends_on('py-requests', type=('build', 'run'))
    depends_on('py-setuptools', type=('build', 'run'))
    depends_on('py-wrapt', type=('build', 'run'))

    depends_on('python@3.3:3.6', when='@:5')

    with when('@6:'):
        depends_on('python@3.5:')
        depends_on('py-pyyaml', type=('build', 'run'))
        depends_on('py-configargparse', type=('build', 'run'))
        depends_on('py-appdirs', type=('build', 'run'))
        depends_on('py-datrie', type=('build', 'run'))
        depends_on('py-jsonschema', type=('build', 'run'))
        depends_on('py-docutils', type=('build', 'run'))
        depends_on('py-gitpython', type=('build', 'run'))
        depends_on('py-psutil', type=('build', 'run'))
        depends_on('py-nbformat', type=('build', 'run'))
        depends_on('py-toposort', type=('build', 'run'))
        depends_on('py-connectionpool@0.0.3:', type=('build', 'run'))
        depends_on('py-pulp@2.0:', type=('build', 'run'))
        depends_on('py-smart-open@3.0:', type=('build', 'run'))
        depends_on('py-filelock', type=('build', 'run'))
        depends_on('py-stopit', type=('build', 'run'))
        depends_on('py-tabulate', type=('build', 'run'))
        depends_on('py-ratelimiter', type=('build', 'run'))

        variant('reports', default=False, description='Generate self-contained HTML reports')
        with when('+reports'):
            depends_on('py-jinja2', type=('build', 'run'))
            depends_on('py-networkx', type=('build', 'run'))
            depends_on('py-pygments', type=('build', 'run'))
            depends_on('py-pygraphviz', type=('build', 'run'))