diff options
author | Jen Herting <jen@herting.cc> | 2021-11-12 12:07:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 10:07:59 -0700 |
commit | 79e520957b0f76be036aedb5c2d63fe78be85f01 (patch) | |
tree | 766b50bb0aa8fe9eea3483c7329b5585a6d8b413 /var | |
parent | 9c386b181af5319ac7bb71dc209c04069124469a (diff) | |
download | spack-79e520957b0f76be036aedb5c2d63fe78be85f01.tar.gz spack-79e520957b0f76be036aedb5c2d63fe78be85f01.tar.bz2 spack-79e520957b0f76be036aedb5c2d63fe78be85f01.tar.xz spack-79e520957b0f76be036aedb5c2d63fe78be85f01.zip |
New package: py-pyscipopt (#27363)
* build of pyscipopt w/ scipoptsuite 7.0.1
* removed type from scipoptsuite"
* removed url
* updated to 3.4.0
* [py-pyscipopt] removed redundant python dependency and fixed dependency types
Co-authored-by: Sid Pendelberry <sid@rit.edu>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyscipopt/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyscipopt/package.py b/var/spack/repos/builtin/packages/py-pyscipopt/package.py new file mode 100644 index 0000000000..1bfed30d38 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyscipopt/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2021 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 import * + + +class PyPyscipopt(PythonPackage): + """Python interface for the SCIP Optimization Suite""" + + homepage = "https://github.com/scipopt/PySCIPOpt" + pypi = "PySCIPOpt/PySCIPOpt-3.4.0.tar.gz" + + version('3.4.0', sha256='8da4db57b21010e0d5a863292dd455c88dd71ecec12a8439171c213a8092f88a') + + depends_on('py-setuptools', type='build') + depends_on('py-cython', type='build') + depends_on('py-wheel', type='build') + depends_on('scipoptsuite') |