Sha256: 10a9bcd587b7e9de609e0d0c6dda72f5f08630e3a2c78d0204958c1aab9e2a5e
Contents?: true
Size: 654 Bytes
Versions: 34
Compression:
Stored size: 654 Bytes
Contents
# Puppet package provider for Python's `pip3` package management frontend. # <http://pip.openplans.org/> 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
34 entries across 34 versions & 2 rubygems