aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/python.pp
blob: ab999b22ebdd067abf825d5c850afe6396b9959c (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 { [
    'python-setuptools',
    'python-virtualenv',
    'python-yaml',
    'python-cheetah',
    'python-unidecode',
    'python-shortuuid',
    'python-pycurl',
    #'python-bs4',
    #'python-scrapy',
    #'python3-pgpy',
  ]:
    ensure => $ensure,
  }
}