Skip to content

spack/pypi-to-spack-package

Repository files navigation

PyPI to Spack package.py

Quick start

Install this tool in a virtual environment (currently only available from source):

$ mkdir ~/pypi-to-spack-package
$ cd ~/pypi-to-spack-package
$ python3 -mvenv .venv
$ source .venv/bin/activate
$ pip install "git+https://github.com/spack/pypi-to-spack-package.git#egg=pypi-to-spack-package"

Set up Spack's Python path:

$ export PYTHONPATH=$spack/lib/spack

Run it:

$ pypi-to-spack info

There are two entry points provided after installation:

  • pypi-to-spack: generate and update package.py files.
  • pypi-to-spack-import: import and refresh the local SQLite database from BigQuery exports.

Inputs

  1. spack_requirements.txt: a set of requirements we want to generate package.py files for. This tool will generate at least one matching version for each requirement listed in this file.
  2. data.db: a SQLite database containing most PyPI entries. The database is downloaded automatically from the GitHub releases page when running the script for the first time, or you can rebuild it with pypi-to-spack-import.

Basic workflow

Show database info (downloads DB if missing):

$ pypi-to-spack info

Export all Spack's current builtin Python packages and versions to a spack_requirements.txt file.

$ pypi-to-spack update-requirements --new

Instead of listing all Spack's Python packages, you can also manually create a spack_requirements.txt file like this:

$ cat spack_requirements.txt
black[uvloop,colorama,jupyter,d]
black[uvloop,colorama,jupyter,d] ==25.1.0
black[uvloop,colorama,jupyter,d] ==24.10.0
black[uvloop,colorama,jupyter,d] ==24.8.0
black[uvloop,colorama,jupyter,d] ==24.4.2
black[uvloop,colorama,jupyter,d] ==24.4.1
black[uvloop,colorama,jupyter,d] ==24.4.0

Generate package.py files for the listed requirements:

$ pypi-to-spack generate --clean --requirements spack_requirements.txt

This creates a new repo under ./repo. Inspect a generated file, e.g. for black:

$ cat repo/packages/py-black/package.py

When satisfied, export everything to the Spack repository:

$ pypi-to-spack export

Tip

Some packages have further runtime dependencies from the system that cannot be articulated in Requires-Dist fields (e.g. depends_on("git", type="run")). Furthermore, Spack maintainers sometimes add forward compat bounds that were not anticipated at the time of release of a version (e.g. depends_on("py-cython@:0", when="@:3") or depends_on("python@:3.10", when="@:4")). To preserve these extra constraints, you can wrap them in the builtin repo's package.py:

# <<< extra constraints
depends_on(...)
# extra constraints >>>

Those lines will not be deleted by pypi-to-spack export.

What versions are selected?

For every requirement / constraint that may apply, we take at most the best 10 matching versions. "Best" in the sense that we prefer final releases with largest version number.

(If you don't want to generate new versions, but just clean up existing Spack packages with the exact same versions, use pypi-to-spack generate --no-new-versions)

Support for specifiers / markers

  • extra == "a" and extra == "b" or extra == "c": gets translated into depends_on(..., when="+a +b") depends_on(..., when="+c") and operators compose fine.
  • python_version <= "3.8" or python_version >= "3.10" statements are simplified further to a single constraint when="^python@:3.8,3.10:".
  • ✅ The variables sys_platform and platform_system with == and != operators are translated to one or more platform=... for Linux (+cray), Darwin, Windows and FreeBSD.
  • ✅ Support for correctly ordered pre-releases through spack/spack#43140
  • ✅ Specifiers for dependencies (>=3.7, ~=3.7.1 etc) are not directly translated, but evaluated on all known versions of the dependency, and then simplified into a Spack range. This ensures that we don't have to deal with edge cases (of which there are many). The downside of this approach is that it's rather slow, since it does not perform binary search.

Issues

  • PKG-INFO: some packages do not provide the Requires-Dist fields in the PKG-INFO file, meaning that this project cannot know their dependencies. This is a shortcoming of the PyPI database.
  • Build dependencies: currently it cannot generate build dependencies, as they are lacking from the PyPI database.
  • Markers: not all can be directly translated to a single when condition:
    • python_version in "3.7,3.8,3.9": could be translated into ^[email protected]:3.9, but is not, because the in and not in operators use the right-hand side as literal string, instead of a version list. So, I have not implemented this.
    • ❌ The variables os_name, platform_machine, platform_release, platform_version, implementation_version are still not implemented (some cannot be?).

Importing / rebuilding the PyPI database manually

If you want to build the database from scratch instead of using the published snapshot, use the pypi-to-spack-import tool. Below are the BigQuery export steps.

  1. Go to https://console.cloud.google.com/bigquery?p=bigquery-public-data&d=pypi&page=dataset

  2. Run the following query

    EXPORT DATA OPTIONS(
      compression="GZIP",
      uri="gs://<bucket>/pypi-distributions/pypi-*.json.gz",
      format="JSON",
      overwrite=true
    )
    
    AS
    
    SELECT
      -- https://packaging.python.org/en/latest/specifications/name-normalization/
      REGEXP_REPLACE(LOWER(x.name), "[-_.]+", "-") AS normalized_name,
      x.version,
      x.requires_dist,
      x.requires_python,
      x.sha256_digest,
      x.path
    
    FROM `bigquery-public-data.pypi.distribution_metadata` AS x
    
    -- Do not use a universal wheel if there are platform specific wheels (e.g. black can be built
    -- both binary and pure python, in that case prefer sdist)
    LEFT JOIN `bigquery-public-data.pypi.distribution_metadata` AS y ON (
      REGEXP_REPLACE(LOWER(x.name), "[-_.]+", "-") = REGEXP_REPLACE(LOWER(y.name), "[-_.]+", "-")
      AND x.version = y.version
      AND x.packagetype = "bdist_wheel"
      AND y.packagetype = "bdist_wheel"
      AND y.path NOT LIKE "%-none-any.whl"
    )
    
    -- Select sdist and universal wheels
    WHERE (
      x.packagetype = "sdist"
      OR x.path LIKE "%py3-none-any.whl"
    ) AND y.name IS NULL
    -- AND x.upload_time >= "2024-03-01" -- If you already have a db, set this to last time fetched
    
    -- Only pick the last (re)upload of (name, version, packagetype) tuples
    QUALIFY ROW_NUMBER() OVER (
      PARTITION BY normalized_name, x.version, x.packagetype
      ORDER BY x.upload_time DESC
    ) = 1
    
    -- If there are both universal wheels and sdist, pick the wheel
    AND ROW_NUMBER() OVER (
      PARTITION BY normalized_name, x.version
      ORDER BY CASE WHEN x.packagetype = 'bdist_wheel' THEN 0 ELSE 1 END
    ) = 1

    which should say something like "Successfully exported 5804957 rows into 101 files".

  3. Also make an export of all known versions:

    EXPORT DATA OPTIONS(
      compression="GZIP",
      uri="gs://<bucket>/pypi-versions/pypi-*.json.gz",
      format="JSON",
      overwrite=true
    )
    
    AS
    
    SELECT
      REGEXP_REPLACE(LOWER(name), "[-_.]+", "-") AS normalized_name,
      version
    FROM `bigquery-public-data.pypi.distribution_metadata`
    GROUP BY normalized_name, version
  4. Download the files using:

    $ gsutil -m cp -r gs://<bucket>/pypi-distributions .
    $ gsutil -m cp -r gs://<bucket>/pypi-versions .
  5. Run pypi-to-spack-import --versions --distributions to import into SQLite.

License

This project is part of Spack. Spack is distributed under the terms of both the MIT license and the Apache License (Version 2.0). Users may choose either license, at their option.

All new contributions must be made under both the MIT and Apache-2.0 licenses.

See LICENSE-MIT, LICENSE-APACHE, COPYRIGHT, and NOTICE for details.

SPDX-License-Identifier: (Apache-2.0 OR MIT)

LLNL-CODE-811652

About

Convert PyPI entries to Spack package.py

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages