Skip to content

Commit

Permalink
python-nidaqmx: new package
Browse files Browse the repository at this point in the history
  • Loading branch information
fsagbuya committed Nov 14, 2024
1 parent 584ad20 commit 0bbe6e8
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
15 changes: 15 additions & 0 deletions mingw-w64-python-nidaqmx/0001-use-poetry-core-backend.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
diff --git a/pyproject.toml b/pyproject.toml
index 3779276..b5f3a81 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -127,8 +127,8 @@ markers = [
]

[build-system]
-requires = ["poetry>=1.2"]
-build-backend = "poetry.masonry.api"
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"

[tool.mypy]
files = "generated/,tests/"
51 changes: 51 additions & 0 deletions mingw-w64-python-nidaqmx/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Maintainer: fsagbuya <[email protected]>

_realname=nidaqmx
pkgbase=mingw-w64-python-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
pkgver=1.0.1
pkgrel=1
pkgdesc="A Python API for interacting with NI-DAQmx"
arch=('any')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://nidaqmx-python.readthedocs.io/"
msys2_repository_url="https://github.com/ni/nidaqmx-python"
msys2_references=(
'pypi: nidaqmx'
)
license=('spdx:MIT')
depends=("${MINGW_PACKAGE_PREFIX}-python"
"${MINGW_PACKAGE_PREFIX}-python-click"
"${MINGW_PACKAGE_PREFIX}-python-deprecation"
"${MINGW_PACKAGE_PREFIX}-python-numpy"
"${MINGW_PACKAGE_PREFIX}-python-requests")
makedepends=("${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-installer"
"${MINGW_PACKAGE_PREFIX}-python-poetry-core")
options=('!strip')
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz"
"0001-use-poetry-core-backend.patch")
sha256sums=('fcbb0ff8f1f618b38ea5fab8a8c6ed24cc32d4b4e935cb1221ce4480e428de9f'
'243c74402bdb75bd9dd668f4e879f300a5bca2156c5969f225f48ab00a4fe899')

prepare() {
cd "${_realname}-${pkgver}"

patch -Np1 -i "${srcdir}/0001-use-poetry-core-backend.patch"
}

build() {
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}"

python -m build --wheel --skip-dependency-check --no-isolation
}

package() {
cd "python-build-${MSYSTEM}"

MSYS2_ARG_CONV_EXCL="--prefix=" \
python -m installer --prefix=${MINGW_PREFIX} \
--destdir="${pkgdir}" dist/*.whl

install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"
}

0 comments on commit 0bbe6e8

Please sign in to comment.