summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-07-30 23:28:33 +0200
committerGitHub <noreply@github.com>2023-07-30 16:28:33 -0500
commitc2288af55c8a3ee321e15408101694c1bbda96fd (patch)
tree619c93326af28b65e34d52cfc2be6eac6c209fc9 /var
parent39cd2f3754c1b93e4d6198af4f8984550daa39ea (diff)
downloadspack-c2288af55c8a3ee321e15408101694c1bbda96fd.tar.gz
spack-c2288af55c8a3ee321e15408101694c1bbda96fd.tar.bz2
spack-c2288af55c8a3ee321e15408101694c1bbda96fd.tar.xz
spack-c2288af55c8a3ee321e15408101694c1bbda96fd.zip
py-csvkit: add 1.1.1 (#39124)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-csvkit/package.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/py-csvkit/package.py b/var/spack/repos/builtin/packages/py-csvkit/package.py
index f5b702c110..90970797e0 100644
--- a/var/spack/repos/builtin/packages/py-csvkit/package.py
+++ b/var/spack/repos/builtin/packages/py-csvkit/package.py
@@ -12,21 +12,26 @@ class PyCsvkit(PythonPackage):
homepage = "http://csvkit.rtfd.org/"
pypi = "csvkit/csvkit-0.9.1.tar.gz"
+ git = "https://github.com/wireservice/csvkit.git"
+ version("1.1.1", sha256="beddb7b78f6b22adbed6ead5ad5de4bfb31dd2c55f3211b2a2b3b65529049223")
version("1.0.4", sha256="1353a383531bee191820edfb88418c13dfe1cdfa9dd3dc46f431c05cd2a260a0")
version("0.9.1", sha256="92f8b8647becb5cb1dccb3af92a13a4e85702d42ba465ce8447881fb38c9f93a")
depends_on("py-setuptools", type=("build", "run"))
- depends_on("py-six@1.6.1:", type=("build", "run"))
- depends_on("py-python-dateutil@2.2", type=("build", "run"), when="@0.9.1")
- depends_on("py-dbf@0.94.003", type=("build", "run"), when="@0.9.1")
- depends_on("py-xlrd@0.7.1:", type=("build", "run"), when="@0.9.1")
- depends_on("py-sqlalchemy@0.6.6:", type=("build", "run"), when="@0.9.1")
- depends_on("py-openpyxl@2.2.0", type=("build", "run"), when="@0.9.1")
- depends_on("py-agate@1.6.1:", type=("build", "run"), when="@1:")
- depends_on("py-agate-excel@0.2.2:", type=("build", "run"), when="@1:")
- depends_on("py-agate-dbf@0.2.0:", type=("build", "run"), when="@1:")
- depends_on("py-agate-sql@0.5.3:", type=("build", "run"), when="@1:")
+ depends_on("py-agate@1.6.1:", when="@1:", type=("build", "run"))
+ depends_on("py-agate-excel@0.2.2:", when="@1:", type=("build", "run"))
+ depends_on("py-agate-dbf@0.2.2:", when="@1.0.7:", type=("build", "run"))
+ depends_on("py-agate-dbf@0.2.0:", when="@1:", type=("build", "run"))
+ depends_on("py-agate-sql@0.5.3:", when="@1:", type=("build", "run"))
+
+ # Historical dependencies
+ depends_on("py-six@1.6.1:", when="@:1.0", type=("build", "run"))
+ with when("@0.9.1"):
+ depends_on("py-xlrd@0.7.1:", type=("build", "run"))
+ depends_on("py-sqlalchemy@0.6.6:", type=("build", "run"))
+ depends_on("py-openpyxl@2.2.0", type=("build", "run"))
+ depends_on("py-python-dateutil@2.2", type=("build", "run"))
@when("@0.9.1")
def patch(self):