aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/python.pp
blob: 2679d55cc8fbfde92eafe2e3040f5c332008cbc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class nodo::utils::development::python (
  $ensure = 'installed',
) {
  package { [
    'python3-setuptools',
    'python3-virtualenv',
    'python3-yaml',
    'python3-cheetah',
    'python3-unidecode',
    'python3-shortuuid',
    'python3-pycurl',
    #'python-bs4',
    #'python-scrapy',
    #'python3-pgpy',
  ]:
    ensure => $ensure,
  }
}