Skip to content

Commit

Permalink
poetry: add missing lockfile dep
Browse files Browse the repository at this point in the history
it is also missing upstream, see
python-poetry/poetry#7169
  • Loading branch information
lazka committed Dec 10, 2022
1 parent bc124ec commit 70ab85b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mingw-w64-python-poetry/PKGBUILD
Expand Up @@ -4,7 +4,7 @@ _realname=poetry
pkgbase=mingw-w64-python-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
pkgver=1.3.0
pkgrel=1
pkgrel=2
pkgdesc="Python dependency management and packaging made easy (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
Expand Down Expand Up @@ -37,6 +37,7 @@ depends=(
"${MINGW_PACKAGE_PREFIX}-python-trove-classifiers"
"${MINGW_PACKAGE_PREFIX}-python-virtualenv"
"${MINGW_PACKAGE_PREFIX}-python-urllib3"
"${MINGW_PACKAGE_PREFIX}-python-lockfile"
)
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
sha256sums=('d42943b44e80f5afafebdb696393cbdbcc750aecfaa6801174a4da42147c73fc')
Expand Down

2 comments on commit 70ab85b

@MehdiChinoune
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lazka
Copy link
Member Author

@lazka lazka commented on 70ab85b Dec 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See the link in the commit message above, they forgot to add it in pyproject.toml. I noticed because it failed to import when calling poetry.

Please sign in to comment.