diff options
author | James Smillie <83249606+jamessmillie@users.noreply.github.com> | 2024-05-10 13:07:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 12:07:02 -0700 |
commit | 40bf9a179bd61c764f834bfd05d07fe348533a89 (patch) | |
tree | 71ce818ad7e34f144917c10d9ecbedc486e5d97d /var | |
parent | 095aba0b9f1da1437e38953ee55cd4b39eb2a31a (diff) | |
download | spack-40bf9a179bd61c764f834bfd05d07fe348533a89.tar.gz spack-40bf9a179bd61c764f834bfd05d07fe348533a89.tar.bz2 spack-40bf9a179bd61c764f834bfd05d07fe348533a89.tar.xz spack-40bf9a179bd61c764f834bfd05d07fe348533a89.zip |
New package: py-nuitka (#44079)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-nuitka/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-nuitka/package.py b/var/spack/repos/builtin/packages/py-nuitka/package.py new file mode 100644 index 0000000000..bcfbc1d894 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-nuitka/package.py @@ -0,0 +1,24 @@ +# 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 PyNuitka(PythonPackage): + """Nuitka is the Python compiler. It is written in Python. It is a + seamless replacement or extension to the Python interpreter and + compiles every construct that Python has, when itself run with that + Python version.""" + + homepage = "https://nuitka.net/" + pypi = "Nuitka/Nuitka-2.2.1.tar.gz" + git = "https://github.com/Nuitka/Nuitka.git" + + license("Apache-2.0") + + version("2.2.1", sha256="7bf67e80f94c93017fbaacfe1e277b92422d234a3c849a1555e43848f5fb27a1") + + depends_on("py-setuptools", type="build") + depends_on("py-ordered-set", type="build") |