summaryrefslogtreecommitdiff
path: root/buildstream/plugins/elements/pip.yaml
blob: 19a226e00e34509ac5b77036a66252648c9fd907 (plain)
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
# Pip default configurations

variables:

  pip: pip

config:

  configure-commands: []
  build-commands: []

  # Commands for installing the software into a
  # destination folder
  #
  install-commands:
  - |
    %{pip} install --no-deps --root=%{install-root} --prefix=%{prefix} .

  # Commands for stripping debugging information out of
  # installed binaries
  #
  strip-commands:
  - |
    %{strip-binaries}
  - |
    %{fix-pyc-timestamps}