spack/var/spack/repos/builtin/packages/nrm/package.py
Manuela Kuhn 833db65fa3
py-pip: add 23.1.2 (#38608)
* py-pip: add 23.1.2

* Restrict py-pip version for py-protobuf

* Restrict py-pip version for straightforward packages

* Restrict py-pip version for nrm

* Fix --install-option name in comments

* Simplify py-pip restriction for py-scs

* nrm: fix wrong comment
2023-07-05 23:37:16 -04:00

29 lines
1.1 KiB
Python

# 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 Nrm(PythonPackage):
"""Node Resource Manager"""
homepage = "https://xgitlab.cels.anl.gov/argo/nrm"
url = "https://www.mcs.anl.gov/research/projects/argo/downloads/nrm-0.1.0.tar.gz"
version("0.1.0", sha256="911a848042fa50ed216c818e0667bcd3e4219687eb5a35476b7313abe12106dc")
depends_on("py-setuptools", type=("build"))
# using py-pip@23.1 results in
# ValueError: ZIP does not support timestamps before 1980
depends_on("py-pip@:23.0", type="build")
depends_on("py-six", type=("build", "run"))
depends_on("py-pyzmq@17.1.2", type=("build", "run"))
depends_on("py-pyyaml", type=("build", "run"))
depends_on("py-tornado@5.1.1", type=("build", "run"))
depends_on("py-numpy", type=("build", "run"))
depends_on("py-jsonschema@2.6.0", type=("build", "run"))
depends_on("py-warlock", type=("build", "run"))
depends_on("py-scipy", type=("build", "run"))