Version information
released Dec 13th 2015
This version is compatible with:
- Darwin
Start using this module
Add this module to your Puppetfile:
mod 'halyard-python', '3.0.12'
Learn more about managing modules with a PuppetfileDocumentation
halyard/python — version 3.0.12 Dec 13th 2015
python
Install Python versions using pyenv. Module based off of puppet-ruby and puppet-nodejs.
This is a fork from Matthew Loberg's puppet-python, tweaked for my environment and Puppet 4 compat.
Changes from upstream
- Adjusted to use CircleCI
- Adjusted to support Puppet 4 module data bindings
- Added support for multiple global python versions
- Added support to python::package for an array of versions
- Allow skipping pyenv init on shell creation using SKIP_PYENV_INIT environment variable
Usage
# Install Python versions
python::version { '2.7.10': }
python::version { '3.5.0': }
# Set the global version of Python
class { 'python::global':
version => '2.7.7'
}
# ensure a certain python version is used in a dir
python::local { '/path/to/some/project':
version => '3.4.1'
}
# Install the latest version of virtualenv
$version = '3.4.1'
python::package { "virtualenv for ${version}":
package => 'virtualenv',
python => $version,
}
# Install Django 1.6.x
python::package { "django for 2.7.7":
package => 'django',
python => '2.7.7',
version => '>=1.6,<1.7',
}
# Installing a pyenv plugin
python::plugin { 'pyenv-virtualenvwrapper':
ensure => 'v20140122',
source => 'yyuu/pyenv-virtualenvwrapper',
}
# Running a package script
# pyenv-installed gems cannot be run in the boxen installation environment which uses the system
# python. The environment must be cleared (env -i) so an installed python (and packages) can be used in a new shell.
exec { "env -i bash -c 'source /opt/boxen/env.sh && PYENV_VERSION=${version} virtualenv venv'":
provider => 'shell',
cwd => "~/src/project",
require => Python::Package["virtualenv for ${version}"],
}
Required Puppet Modules
boxen >= 3.2.0
repository >= 2.1
gcc
stdlib
java
(jython)
License
puppet-python is released under the MIT License. See the bundled LICENSE file for details.
Types in this module release
Copyright (c) 2013 Matthew Loberg Copyright (c) 2015 Les Aker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.