summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorSamLukeYes2023-05-24 11:10:59 +0800
committerSamLukeYes2023-05-24 11:10:59 +0800
commita04774f9f6ee44487b0afef60b770a266cde6182 (patch)
tree683d6024f858ef1b633f4393d228b3281fe93109 /PKGBUILD
parent48f06cc5ca4b6b60d1550e956167fe2afa3da767 (diff)
downloadaur-nbmerge.tar.gz
Partially accept namcap's suggestions
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD11
1 files changed, 8 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 9a0d1bb38244..010569bccfa0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,16 @@
_name=nbmerge
pkgname=$_name
pkgver=0.0.4
-pkgrel=1
+pkgrel=2
pkgdesc="A tool to merge / concatenate Jupyter (IPython) notebooks "
url="https://github.com/jbn/nbmerge"
-depends=('jupyter-nbformat')
-makedepends=('python-setuptools')
+depends=(
+ 'jupyter-nbformat'
+ 'python'
+)
+makedepends=(
+ 'python-setuptools' # namcap expects this to be a runtime dep, but it shouldn't
+)
license=('MIT')
arch=('any')
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)