blob: fafaea52c76874534d71568f13e2f736b004a9ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class nodo::utils::development::python (
$ensure = 'installed',
) {
package { [
'python-setuptools',
'python-virtualenv',
'python-yaml',
'python-cheetah',
'python-unidecode',
'python-shortuuid',
'python-pycurl',
#'python3-pgpy',
]:
ensure => $ensure,
}
}
|