-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix easy to fix things in k4generators config
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
|
||
class K4generatorsconfig(CMakePackage): | ||
"""DD4hep geometry models for future colliders.""" | ||
"""A python based module for the automatic generation of inputfiles for Monte-Carlo(MC) generators.""" | ||
|
||
homepage = "https://github.com/key4hep/k4GeneratorsConfig" | ||
git = "https://github.com/key4hep/k4GeneratorsConfig.git" | ||
|
@@ -23,6 +23,8 @@ class K4generatorsconfig(CMakePackage): | |
depends_on("hepmc3") | ||
depends_on("heppdt") | ||
depends_on("pythia8") | ||
depends_on("[email protected]:") | ||
depends_on("py-pyyaml") | ||
|
||
def cmake_args(self): | ||
args = [] | ||
|
@@ -33,3 +35,4 @@ def cmake_args(self): | |
|
||
def setup_run_environment(self, env): | ||
env.set("K4GENERATORSCONFIG", self.prefix.share.k4geo) | ||
env.prepend_path("PYTHONPATH", self.prefix.python) |