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