Sha256: ac05cbe25d7fc1729569bebfd2da063ff97b563c70c95c2278fff6fb3f93d9f9
Contents?: true
Size: 593 Bytes
Versions: 68
Compression:
Stored size: 593 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 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
68 entries across 68 versions & 1 rubygems