Skip to content

Commit

Permalink
py-pip-tools: new package starting at 6.11.0 (#1835)
Browse files Browse the repository at this point in the history
steps package now depends on py-pip-tools
  • Loading branch information
tristan0x authored Feb 16, 2023
1 parent 191cdb4 commit 75c45ec
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions bluebrain/repo-bluebrain/packages/py-pip-tools/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2013-2021 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 PyPipTools(PythonPackage):
"""pip-tools keeps your pinned dependencies fresh."""

homepage = "https://pip-tools.rtfd.io"
pypi = "pip-tools/pip-tools-6.11.0.tar.gz"

# FIXME: Add a list of GitHub accounts to
# notify when the package is updated.
# maintainers = ['github_user1', 'github_user2']

version('6.11.0', sha256='90c5dc150e3856e4463b81ccc99307ccf9554e5db8393eb273705cb0b8f71c60')

depends_on('py-setuptools@45:', type='build')
depends_on('[email protected]:', type='build')
1 change: 1 addition & 0 deletions bluebrain/repo-patches/packages/steps/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class Steps(CMakePackage):
depends_on("py-mpi4py", when="+distmesh", type=("build", "test", "run"))
depends_on("py-nose", when="@3:", type=("build", "test"))
depends_on("py-numpy", type=("build", "test", "run"))
depends_on("py-pip-tools", type="build")
depends_on("py-scipy", type=("build", "test", "run"))
depends_on("py-unittest2", type=("build", "test"))
depends_on("python", type=("build", "test", "run"))
Expand Down

0 comments on commit 75c45ec

Please sign in to comment.