summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-bitstruct/package.py21
1 files changed, 21 insertions, 0 deletions
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")