aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/python.pp
blob: c9b61a1d2fa573179a7bb1b6bcbe8a13d0f54f94 (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
class nodo::utils::development::python (
  $ensure = 'installed',
) {
  package { [
    'python3-setuptools',
    'python3-virtualenv',
    'python3-yaml',
    'python3-cheetah',
    'python3-unidecode',
    'python3-shortuuid',
    'python3-pycurl',

    # For PyPI package management
    'python3-build',
    'python3-keyrings.alt',
    'twine',

    # Not managed
    #'python-bs4',
    #'python-scrapy',
    #'python3-pgpy',
  ]:
    ensure => $ensure,
  }
}