summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2022-08-10 00:53:57 +0200
committerGitHub <noreply@github.com>2022-08-09 16:53:57 -0600
commitddb83ed77605002c9bbd7320afd87a3e6578f2e6 (patch)
treedb50189f861d9f4e215f6778c8bac3bae5189f4b /var
parent6a30a5c8d7c2f192f4faeba1b8d3e9a5dd43b4fe (diff)
downloadspack-ddb83ed77605002c9bbd7320afd87a3e6578f2e6.tar.gz
spack-ddb83ed77605002c9bbd7320afd87a3e6578f2e6.tar.bz2
spack-ddb83ed77605002c9bbd7320afd87a3e6578f2e6.tar.xz
spack-ddb83ed77605002c9bbd7320afd87a3e6578f2e6.zip
Add checksum for py-setuptools-rust 1.2.0 and 1.4.1 (#32009)
* Add checksum for py-setuptools-rust 1.2.0 and 1.4.1 * Update var/spack/repos/builtin/packages/py-setuptools-rust/package.py Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> * Update package.py Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-setuptools-rust/package.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-setuptools-rust/package.py b/var/spack/repos/builtin/packages/py-setuptools-rust/package.py
index 8999158bc8..fed852868a 100644
--- a/var/spack/repos/builtin/packages/py-setuptools-rust/package.py
+++ b/var/spack/repos/builtin/packages/py-setuptools-rust/package.py
@@ -12,6 +12,8 @@ class PySetuptoolsRust(PythonPackage):
homepage = "https://github.com/PyO3/setuptools-rust"
pypi = "setuptools-rust/setuptools-rust-0.12.1.tar.gz"
+ version("1.4.1", sha256="18ff850831f58ee21d5783825c99fad632da21e47645e9427fd7dec048029e76")
+ version("1.2.0", sha256="0a4ada479e8c7e3d8bd7cb56e1a29acc2b2bb98c2325051b0cdcb57d7f056de8")
version("0.12.1", sha256="647009e924f0ae439c7f3e0141a184a69ad247ecb9044c511dabde232d3d570e")
# Version 0.10.6 is not available on pypi and can only be found on github
@@ -22,10 +24,15 @@ class PySetuptoolsRust(PythonPackage):
deprecated=True,
)
+ depends_on("python@3.7:", when="@1.2.0:", type=("build", "run"))
depends_on("python@3.6:", when="@0.12:", type=("build", "run"))
+ depends_on("py-setuptools@62.4:", when="@1.4.0:", type=("build", "run"))
depends_on("py-setuptools@46.1:", when="@0.11.6:", type=("build", "run"))
depends_on("py-setuptools", type=("build", "run"))
+ depends_on("py-setuptools-scm+toml@6.3.2:", when="@1.2.0:", type="build")
depends_on("py-setuptools-scm+toml@3.4.3:", when="@0.11:", type="build")
+ depends_on("py-semantic-version@2.8.2:2", when="@1.2.0:", type=("build", "run"))
depends_on("py-semantic-version@2.6.0:", type=("build", "run"))
- depends_on("py-toml@0.9.0:", type=("build", "run"))
+ depends_on("py-typing-extensions@3.7.4.3:", when="@1.2.0:", type=("build", "run"))
+ depends_on("py-toml@0.9.0:", type=("build", "run"), when="@0.12.1")
depends_on("rust", type="run")