py-rdflib: add 6.3.2 (#39065)

* py-rdflib: add 6.3.2

* Update var/spack/repos/builtin/packages/py-rdflib/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

* Remove python dependency

---------

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Manuela Kuhn 2023-07-31 20:50:00 +02:00 committed by GitHub
parent d25f1059dd
commit 20a7622602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,15 +21,22 @@ class PyRdflib(PythonPackage):
homepage = "https://github.com/RDFLib/rdflib"
pypi = "rdflib/rdflib-5.0.0.tar.gz"
version("6.3.2", sha256="72af591ff704f4caacea7ecc0c5a9056b8553e0489dd4f35a9bc52dbd41522e0")
version("6.2.0", sha256="62dc3c86d1712db0f55785baf8047f63731fa59b2682be03219cb89262065942")
version("6.0.2", sha256="6136ae056001474ee2aff5fc5b956e62a11c3a9c66bb0f3d9c0aaa5fbb56854e")
version("5.0.0", sha256="78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155")
depends_on("python@3.7:", when="@6:", type="build")
depends_on("py-setuptools", type="build")
depends_on("python@3.7:3", when="@6.3:", type=("build", "run"))
depends_on("py-poetry-core@1.4:", when="@6.3:", type="build")
depends_on("py-isodate@0.6", when="@6.3:", type=("build", "run"))
depends_on("py-isodate", type=("build", "run"))
depends_on("py-pyparsing@2.1:3", when="@6.3:", type=("build", "run"))
depends_on("py-pyparsing", type=("build", "run"))
depends_on("py-setuptools", when="@6:", type=("build", "run"))
depends_on("py-importlib-metadata@4", when="@6.3: ^python@:3.7", type=("build", "run"))
depends_on("py-importlib-metadata", when="@6.1: ^python@:3.7", type=("build", "run"))
# Historical dependencies
depends_on("py-setuptools", when="@6:6.2", type=("build", "run"))
depends_on("py-setuptools", when="@:5", type="build")
depends_on("py-six", when="@:5", type=("build", "run"))