Lines Matching refs:package_path
38 package_path = next(WHEEL_DIR.glob(f"{package_name}*.whl"), None)
39 if not package_path:
43 print(f"Verifying checksum for {package_path}.")
51 package_path,
61 print_error(package_path, f"Could not fetch JSON metadata for {package_name}.")
66 if package_path.name != release_info["filename"]:
71 print_error(package_path, f"No digest for {package_name} found from PyPI.")
75 actual_digest = hashlib.sha256(package_path.read_bytes()).hexdigest()
82 package_path, f"Failed to verify the checksum of the {package_name} wheel."
87 package_path,