Sha256: 59d42c2abfa0f77b04d32d5d89283f53e46f84e1b57ad8c0396fb3234f420d48
Contents?: true
Size: 661 Bytes
Versions: 32
Compression:
Stored size: 661 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, :targetable def self.cmd ["pip3"] end end
Version data entries
32 entries across 32 versions & 1 rubygems