blob: 559ad594d8dbc3f5a65027438242e11ee5dd6a0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2013-2024 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 PyDatrie(PythonPackage):
"""Super-fast, efficiently stored Trie for Python (2.x and 3.x). Uses libdatrie."""
pypi = "datrie/datrie-0.8.2.tar.gz"
maintainers("marcusboden")
license("LGPL-2.1-or-later")
version("0.8.2", sha256="525b08f638d5cf6115df6ccd818e5a01298cd230b2dac91c8ff2e6499d18765d")
depends_on("c", type="build") # generated
depends_on("python@2.7:2.8,3.4:", type=("build", "run"))
depends_on("py-setuptools@40.8:", type=("build"))
depends_on("py-cython@0.28:", type="build")
depends_on("py-pytest-runner", type="build")
|