Sha256: 871236638a54a170d42ee46ae284724250e00020cadbd012babdc264b8fc7f82
Contents?: true
Size: 648 Bytes
Versions: 275
Compression:
Stored size: 648 Bytes
Contents
# Puppet package provider for Python's `pip3` package management frontend. # <http://pip.pypa.io/> require 'puppet/provider/package/pip' Puppet::Type.type(:package).provide :pip3, :parent => :pip do desc "Python packages via `pip3`. This provider supports the `install_options` attribute, which allows command-line flags to be passed to pip3. These options should be specified as a string (e.g. '--flag'), a hash (e.g. {'--flag' => 'value'}), or an array where each element is either a string or a hash." has_feature :installable, :uninstallable, :upgradeable, :versionable, :install_options def self.cmd ["pip3"] end end
Version data entries
275 entries across 275 versions & 3 rubygems