summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-oset/package.py
blob: c2f9d3d13c2c042ec45d66ff4ce60d9628ac7241 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 PyOset(PythonPackage):
    """Set that remembers original insertion order."""

    pypi = "oset/oset-0.1.3.tar.gz"

    version("0.1.3", sha256="4c1fd7dec96eeff9d3260995a8e37f9f415d0bdb79975f57824e68716ac8f904")

    depends_on("py-setuptools", type="build")
    depends_on("python@2.5:", type=("build", "run"))