Skip to content
Snippets Groups Projects

feat: add py-pip to env

Merged Eric Müller requested to merge feat_add_py-pip into master
Files
2
+ 16
0
 
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
 
# Spack Project Developers. See the top-level COPYRIGHT file for details.
 
#
 
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
 
 
from spack import *
 
 
 
class WfCustomPython(BundlePackage):
 
"""Meta-package to represent a use case where users install additional
 
(on top of the ESD) Python packages."""
 
 
version("0.1")
 
 
depends_on("py-pip")
 
depends_on("py-virtualenv")