summaryrefslogtreecommitdiff
path: root/share/spack/templates/bootstrap/spack.yaml
blob: 4573bb485eb998df653a902f89b122966603dd48 (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
# This environment contains Spack non-core dependencies for the
# following configuration
#
# Python spec: {{ python_spec }}
# Python interpreter: {{ python_prefix }}
# Architecture: {{ architecture }}
#
spack:
  specs:
{% for spec in environment_specs %}
    - "{{ spec }}"
{% endfor %}
  view: {{ environment_path }}/view

  config:
    install_tree:
      root: {{ store_path }}

  packages:
    python:
      buildable: false
      externals:
        - spec: "{{ python_spec }}"
          prefix: "{{ python_prefix }}"

    py-typed-ast:
      require: "+wheel"

    py-platformdirs:
      require: "+wheel"

  concretizer:
    reuse: false
    unify: true