Package Details: python-pysimplegui 4.60.5-1

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: SpotlightKid (osamc)
Last Packager: hawkeye116477
Votes: 9
Popularity: 0.51
First Submitted: 2018-09-23 13:08 (UTC)
Last Updated: 2023-07-12 17:02 (UTC)

Latest Comments

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.

==> Creating package "python-pysimplegui"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: python-pysimplegui 4.60.3-0 (Fri 02 Sep 2022 23:12:43 BST)

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 ;)