Search Criteria
Package Details: python-pysimplegui 4.70.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-pysimplegui.git (read-only, click to copy) |
---|---|
Package Base: | python-pysimplegui |
Description: | Super-simple to create custom GUI |
Upstream URL: | https://github.com/MikeTheWatchGuy/PySimpleGUI |
Keywords: | pysimplegui python |
Licenses: | LGPLv3+ |
Submitter: | zhangshuoliang |
Maintainer: | None |
Last Packager: | dpeukert |
Votes: | 8 |
Popularity: | 0.175638 |
First Submitted: | 2018-09-23 13:08 (UTC) |
Last Updated: | 2024-07-23 16:59 (UTC) |
Dependencies (4)
- python (python37AUR, python311AUR, python310AUR)
- tk (tk-fossilAUR)
- python-setuptools (make)
- python-pytest-runnerAUR (check)
Latest Comments
SpotlightKid commented on 2024-07-23 12:43 (UTC)
To the user, who flagged this as out-of-date. The upstream project changed to a commercial license with version 5 and removed the source distribution of version 4 from PyPI and nuked the history of the Github repo.
I have no interest in maintaining a package of the commercial version, so I'm orphaning this now.
baronmog commented on 2024-05-23 18:55 (UTC)
Interesting. It was previously built and installed w/ python 3.11, the failures started after my system updated to python 3.12. After removing the cached package build and rebuilding and installing, it runs now.
baronmog commented on 2024-05-23 18:25 (UTC) (edited on 2024-05-23 18:29 (UTC) by baronmog)
This builds and installs, but is not usable. All of the installed executables fail with:
Other programs that try to import PySimpleGUI fail with:
a821 commented on 2024-02-17 15:08 (UTC)
Seems like upstream nuked their github repo and made the software non-free (starting from 5.0). The last free version is 4.60.5.
itoffshore commented on 2022-09-02 22:16 (UTC)
version
4.60.3
builds ok & imports fine too.jhincks commented on 2018-11-10 10:24 (UTC)
hi zhangshuoliang, i had a few small issues with the PKGBUILD - 'makepkg -si' finished with NO error - but pacman couldn't find it. I think i got it fixed - but i am not experienced at all in those things (this is in total my second post in the AUR...)
this one was working for me:
pkgname=('python-pysimplegui') _module='PySimpleGUI' pkgver=3.14.1 pkgrel=1 pkgdesc='The native GUI framework for perfectionists with deadlines.' arch=('any') license=('LGPLv3+') url='https://github.com/MikeTheWatchGuy/PySimpleGUI' depends=('tk' 'python') makedepends=('python-setuptools') checkdepends=('python-pytest-runner') source=(${pkgname}-${pkgver}.tar.gz::https://pypi.python.org/packages/source/P/PySimpleGUI/PySimpleGUI-${pkgver}.tar.gz) sha256sums=('f500317c8f818cef39cc482d51b7e7376be821b6531d4a2f04b7211bc74dadb3')
build() { cd "${srcdir}/${_module}-${pkgver}" python setup.py build }
package() { cd "${srcdir}/${_module}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 --skip-build }
i hope it might save you at least some minutes of time ;)