Skip to content

theredfoxlee/pdm-pip-index-url

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pdm-pip-index-url

GitHub Workflow - Status PyPI - Version PyPI - Python Versions PyPI - Downloads PyPI - Format

pdm-pip-index-url is a pdm plugin that automatically converts PIP_*INDEX_URL to PDM_PYPI_* envs.

For each pdm sub-command invocation, pdm will search for PIP_*INDEX_URL environment variables to convert them to coressponding PDM_PYPI_* values (see process_pip_envs in ./plugin.py for detailed logic description).

Usage

  1. Install plugin: pdm self add pdm-pip-index-url

Logging

Turn on logging by adding -v to executed command, e.g.: pdm add -v black.

Example [Use Case]

Consider a scenario where you are using PDM in an environment that does not provide a way to authenticate it to a private PyPI server but supports pip authentication (e.g., Azure Pipelines). Here is an example:

# 1. Set PIP_INDEX_URL for <private-feed>.
- task: PipAuthenticate@1
  inputs:
    artifactFeeds: <private-feed>
# 2. Install pdm.
- script: pip install pdm==2.7.4
# 3. Install this plugin.
- script: pdm self add pdm-pip-index-url==0.1.1
# 4. Use PIP_INDEX_URL env to install <private-package> from <private-feed>.
- script: pdm add <private-package>

About

A pdm plugin that automatically converts PIP_*INDEX_URL to PDM_PYPI_* envs.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages