Sha256: 1929a2f7f111bf4c53399f7ceb1fc033263aaa45958fb455c223f59ac4914e04
Contents?: true
Size: 618 Bytes
Versions: 32
Compression:
Stored size: 618 Bytes
Contents
# frozen_string_literal: true # Puppet package provider for Python's `pip2` package management frontend. # <http://pip.pypa.io/> Puppet::Type.type(:package).provide :pip2, :parent => :pip do desc "Python packages via `pip2`. This provider supports the `install_options` attribute, which allows command-line flags to be passed to pip2. 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 ["pip2"] end end
Version data entries
32 entries across 32 versions & 1 rubygems