diff options
author | Franz Geffke <franz@pantherx.org> | 2024-03-30 16:57:51 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2024-03-30 16:57:51 +0000 |
commit | 697ed2e2789614a0a40be27f845a78eab1dc3fa6 (patch) | |
tree | 6690dda8ced6c61d577bf7c9bd32fab56d180219 /px/packages | |
parent | 7cddc3f6ee48675559d8d1a8c57ba842b358eee3 (diff) |
python-speaklater: move to pyhon-xyz module
Diffstat (limited to 'px/packages')
-rw-r--r-- | px/packages/etesync.scm | 18 | ||||
-rw-r--r-- | px/packages/python-xyz.scm | 20 |
2 files changed, 19 insertions, 19 deletions
diff --git a/px/packages/etesync.scm b/px/packages/etesync.scm index e6aee77..fb3b5d1 100644 --- a/px/packages/etesync.scm +++ b/px/packages/etesync.scm @@ -124,24 +124,6 @@ It currently implements AddressBook and Calendar access, and supports two-way sync (both push and pull) to the server.") (license license:gpl3))) -(define-public python-speaklater - (package - (name "python-speaklater") - (version "1.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "speaklater" version)) - (sha256 - (base32 "1ab5dbfzzgz6cnz4xlwx79gz83id4bhiw67k1cgqrlzfs0va7zjr")))) - (build-system python-build-system) - (home-page "http://github.com/mitsuhiko/speaklater") - (synopsis - "implements a lazy string for python useful for use with gettext") - (description - "implements a lazy string for python useful for use with gettext") - (license #f))) - ;; python-flask-wtf tests require python-flask-babelex (define-public python-flask-babelex (package diff --git a/px/packages/python-xyz.scm b/px/packages/python-xyz.scm index 2587169..246f412 100644 --- a/px/packages/python-xyz.scm +++ b/px/packages/python-xyz.scm @@ -979,4 +979,22 @@ communicating with your Coldcard over USB") (synopsis "Simple integration of Flask and WTForms") (description "Flask-WTF integrates Flask and WTForms, including CSRF, file upload, and reCAPTCHA.") - (license license:bsd-3)))
\ No newline at end of file + (license license:bsd-3))) + +(define-public python-speaklater + (package + (name "python-speaklater") + (version "1.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "speaklater" version)) + (sha256 + (base32 "1ab5dbfzzgz6cnz4xlwx79gz83id4bhiw67k1cgqrlzfs0va7zjr")))) + (build-system python-build-system) + (home-page "http://github.com/mitsuhiko/speaklater") + (synopsis + "implements a lazy string for python useful for use with gettext") + (description + "implements a lazy string for python useful for use with gettext") + (license #f)))
\ No newline at end of file |