# Copyright 2013-2023 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 PyPortalocker(PythonPackage): """Portalocker is a library to provide an easy API to file locking.""" homepage = "https://github.com/WoLpH/portalocker" pypi = "portalocker/portalocker-2.5.1.tar.gz" license("BSD-3-Clause") version("2.5.1", sha256="ae8e9cc2660da04bf41fa1a0eef7e300bb5e4a5869adfb1a6d8551632b559b2b") version("1.6.0", sha256="4013e6d17123560178a5ba28cb6fdf13fd3079dee18571ff824e05b7abc97b94") depends_on("python@3.5:", when="@2:", type=("build", "run")) depends_on("py-setuptools@38.3.0:", type="build")