From 27c62b981ab534a67362a1b7c4037282521f0f8b Mon Sep 17 00:00:00 2001 From: Dax Lynch <81718016+DaxLynch@users.noreply.github.com> Date: Sun, 9 Jul 2023 18:19:07 -0700 Subject: Added package py-bitstruct (#38761) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added packages bitstruct, callmonitor, and PYnvtx * Revert "Added packages bitstruct, callmonitor, and PYnvtx" This reverts commit 76d25aa76bf4655a85c78725fe5c76c1792717c9. * py-bitstruct: This module is intended to have a similar interface as the python struct module, but working on bits instead of primitive data types (char, int, …) * Update package.py To pass the style prechecks * PyNVTX: new package * Delete package.py Accidentally added this package. * Update var/spack/repos/builtin/packages/py-bitstruct/package.py Co-authored-by: Adam J. Stewart --------- Co-authored-by: eugeneswalker <38933153+eugeneswalker@users.noreply.github.com> Co-authored-by: Adam J. Stewart --- .../repos/builtin/packages/py-bitstruct/package.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-bitstruct/package.py diff --git a/var/spack/repos/builtin/packages/py-bitstruct/package.py b/var/spack/repos/builtin/packages/py-bitstruct/package.py new file mode 100644 index 0000000000..252bb02b99 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-bitstruct/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2022 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 PyBitstruct(PythonPackage): + """This module is intended to have a similar interface as the python + struct module, but working on bits instead of primitive data types + (char, int, ...)""" + + homepage = "https://github.com/eerimoq/bitstruct" + pypi = "bitstruct/bitstruct-8.17.0.tar.gz" + + maintainers("DaxLynch") + + version("8.17.0", sha256="eb94b40e4218a23aa8f90406b836a9e6ed83e48b8d112ce3f96408463bd1b874") + + depends_on("py-setuptools", type="build") -- cgit v1.2.3-70-g09d2