blob: 5a73c74ff83e160a45dd7ab876aee44e311859f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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 PySspilib(PythonPackage):
"""SSPI API bindings for Python."""
homepage = "https://github.com/jborean93/sspilibi"
pypi = "sspilib/sspilib-0.1.0.tar.gz"
maintainers("wdconinc")
license("MIT", checked_by="wdconinc")
version("0.1.0", sha256="58b5291553cf6220549c0f855e0e6973f4977375d8236ce47bb581efb3e9b1cf")
depends_on("py-setuptools@61:", type="build")
depends_on("py-cython@3", type=("build", "run"))
|