Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
26
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Commits
1aad58f7
Commit
1aad58f7
authored
1 year ago
by
Eleni Mathioulaki
Browse files
Options
Downloads
Patches
Plain Diff
add py-etils from Spack upstream (dep of py-jax)
parent
8e64bec6
No related branches found
Branches containing commit
No related tags found
2 merge requests
!330
create new experimental release
,
!320
use Spack v0.19.2
Pipeline
#22055
passed with stage
in 11 hours, 1 minute, and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/py-etils/package.py
+26
-0
26 additions, 0 deletions
packages/py-etils/package.py
with
26 additions
and
0 deletions
packages/py-etils/package.py
0 → 100644
+
26
−
0
View file @
1aad58f7
# Copyright 2013-2023 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.package
import
*
class
PyEtils
(
PythonPackage
):
"""
etils (eclectic utils) is an open-source collection of utils
for python.
"""
homepage
=
"
https://github.com/google/etils
"
pypi
=
"
etils/etils-0.9.0.tar.gz
"
version
(
"
0.9.0
"
,
sha256
=
"
489103e9e499a566765c60458ee15d185cf0065f2060a4d16a68f8f46962ed0d
"
)
variant
(
"
epath
"
,
default
=
False
,
description
=
"
with epath module
"
)
depends_on
(
"
python@3.7:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-importlib-resources
"
,
type
=
(
"
build
"
,
"
run
"
),
when
=
"
+epath
"
)
depends_on
(
"
py-typing-extensions
"
,
type
=
(
"
build
"
,
"
run
"
),
when
=
"
+epath
"
)
depends_on
(
"
py-zipp
"
,
type
=
(
"
build
"
,
"
run
"
),
when
=
"
+epath
"
)
depends_on
(
"
py-flit-core@3.5:3
"
,
type
=
"
build
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment