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