This change was automated using:
$ git ls-files | grep .scm | \
  xargs sed 's/(getenv "PYTHONPATH")/(getenv "GUIX_PYTHONPATH")/' -i
$ git ls-files | grep .scm | \
  xargs sed 's/`("PYTHONPATH"/`("GUIX_PYTHONPATH"/' -i
* gnu/packages/admin.scm (nmap):
(dstat): Wrap using GUIX_PYTHONPATH.
* gnu/packages/audio.scm (jack-2):
(carla): Likewise.
* gnu/packages/benchmark.scm (fio): Likewise.
* gnu/packages/bioinformatics.scm (couger): Likewise.
(gess, find-circ, filtlong, nanopolish): Likewise.
* gnu/packages/cdrom.scm (cdemu-client): Likewise.
* gnu/packages/chemistry.scm (avogadro): Likewise.
* gnu/packages/connman.scm (econnman): Likewise.
* gnu/packages/cups.scm (hplip): Likewise.
* gnu/packages/debug.scm (scanmem): Likewise.
* gnu/packages/display-managers.scm (lightdm): Likewise.
* gnu/packages/ebook.scm (cozy): Likewise.
* gnu/packages/education.scm (anki): Likewise.
* gnu/packages/engineering.scm (kicad, volk, freecad): Likewise.
* gnu/packages/game-development.scm (renpy): Likewise.
* gnu/packages/games.scm (roguebox-adventures)
(seahorse-adventures, kajongg): Likewise.
* gnu/packages/gimp.scm (gimp, glimpse): Likewise.
* gnu/packages/glib.scm (itstool): Likewise.
* gnu/packages/gnome.scm (gnome-music, gtg, rhythmbox): Likewise.
(eolie, d-feet, gedit, caribou, gnome-shell, authenticator)
(gnome-todo, orca, passwordsafe, terminator, setzer)
(libratbag, komikku): Likewise.
* gnu/packages/gps.scm (gpsd): Likewise.
* gnu/packages/gtk.scm (gtk-doc): Likewise.
* gnu/packages/ibus.scm (ibus, ibus-libpinyin, ibus-anthy)
(ibus-libhangul): Likewise.
* gnu/packages/inkscape.scm (inkscape-1.0): Likewise.
* gnu/packages/linux.scm (bcc): Likewise.
* gnu/packages/mail.scm (notifymuch): Likewise.
* gnu/packages/maths.scm (units): Likewise.
* gnu/packages/music.scm (solfege): Likewise.
* gnu/packages/networking.scm (blueman): Likewise.
* gnu/packages/patchutils.scm (patchwork): Likewise.
* gnu/packages/photo.scm (rapid-photo-downloader, entangle): Likewise.
* gnu/packages/plotutils.scm (asymptote): Likewise.
* gnu/packages/presentation.scm (presentty): Likewise.
* gnu/packages/screen.scm (byobu): Likewise.
* gnu/packages/storage.scm (ceph): Likewise.
* gnu/packages/syndication.scm (liferea): Likewise.
* gnu/packages/task-management.scm (blanket): Likewise.
* gnu/packages/text-editors.scm (manuskript): Likewise.
* gnu/packages/version-control.scm (gitless, cgit, git-when-merged)
(git-imerge): Likewise.
* gnu/packages/video.scm (pitivi): Likewise.
* gnu/packages/virtualization.scm (criu): Likewise.
* gnu/packages/xfce.scm (catfish): Likewise.
		
	
			
		
			
				
	
	
		
			90 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
| ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
 | |
| ;;;
 | |
| ;;; This file is part of GNU Guix.
 | |
| ;;;
 | |
| ;;; GNU Guix is free software; you can redistribute it and/or modify it
 | |
| ;;; under the terms of the GNU General Public License as published by
 | |
| ;;; the Free Software Foundation; either version 3 of the License, or (at
 | |
| ;;; your option) any later version.
 | |
| ;;;
 | |
| ;;; GNU Guix is distributed in the hope that it will be useful, but
 | |
| ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| ;;; GNU General Public License for more details.
 | |
| ;;;
 | |
| ;;; You should have received a copy of the GNU General Public License
 | |
| ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| (define-module (gnu packages presentation)
 | |
|   #:use-module ((guix licenses) #:prefix license:)
 | |
|   #:use-module (guix download)
 | |
|   #:use-module (guix packages)
 | |
|   #:use-module (guix utils)
 | |
|   #:use-module (guix build-system python)
 | |
|   #:use-module (gnu packages figlet)
 | |
|   #:use-module (gnu packages games)
 | |
|   #:use-module (gnu packages image)
 | |
|   #:use-module (gnu packages python)
 | |
|   #:use-module (gnu packages python-xyz))
 | |
| 
 | |
| (define-public presentty
 | |
|   (package
 | |
|     (name "presentty")
 | |
|     (version "0.2.1")
 | |
|     (source
 | |
|       (origin
 | |
|         (method url-fetch)
 | |
|         (uri (pypi-uri "presentty" version))
 | |
|         (sha256
 | |
|          (base32
 | |
|           "1qpy992hyg1amjl0acic3agj20spcpv5m0ncg1283mmxs8cs3xy9"))
 | |
|         (patches
 | |
|           (list
 | |
|             (origin
 | |
|               (method url-fetch)
 | |
|               (uri "https://sources.debian.org/data/main/p/presentty/0.2.1-1/debian/patches/presentty-python3.patch")
 | |
|               (sha256
 | |
|                (base32
 | |
|                 "03d3ylh1z99g4dqj7aka60spagnwss9mbacd7jbpk1gazflnssz1")))))))
 | |
|     (build-system python-build-system)
 | |
|     (arguments
 | |
|      `(#:tests? #f ; Test suite hasn't withstood the test of time.
 | |
|        #:phases
 | |
|        (modify-phases %standard-phases
 | |
|          (replace 'wrap
 | |
|            (lambda* (#:key python inputs outputs #:allow-other-keys)
 | |
|              (let* ((out (assoc-ref outputs "out"))
 | |
|                     (bin (string-append out "/bin/"))
 | |
|                     (python (assoc-ref inputs "python")))
 | |
|                (for-each
 | |
|                  (lambda (program)
 | |
|                    (wrap-program (string-append bin program)
 | |
|                      `("PATH" ":" prefix (,(dirname (which "cowsay"))
 | |
|                                           ,(dirname (which "figlet"))
 | |
|                                           ,(dirname (which "jp2a"))))
 | |
|                      `("GUIX_PYTHONPATH" prefix
 | |
|                        ,(cons (string-append out "/lib/python"
 | |
|                                              (python-version python)
 | |
|                                              "/site-packages")
 | |
|                               (search-path-as-string->list
 | |
|                                 (or (getenv "GUIX_PYTHONPATH") ""))))))
 | |
|                  '("presentty" "presentty-console")))
 | |
|              #t)))))
 | |
|     (inputs
 | |
|      `(("cowsay" ,cowsay)
 | |
|        ("figlet" ,figlet)
 | |
|        ("jp2a" ,jp2a)
 | |
|        ("python-docutils" ,python-docutils)
 | |
|        ("python-pillow" ,python-pillow-2.9)
 | |
|        ("python-six" ,python-six)
 | |
|        ("python-urwid" ,python-urwid)))
 | |
|     (native-inputs
 | |
|      `(("python-pbr" ,python-pbr)
 | |
|        ("python-pygments" ,python-pygments)))
 | |
|     (home-page "http://git.inaugust.com/cgit/presentty/")
 | |
|     (synopsis "Console-based presentation system")
 | |
|     (description "Presentty is a console-based presentation program where slides
 | |
| are authored in reStructuredText.  Its features include, but are not limited to:
 | |
| Cross-fade animations, progressive list display, panning transitions, syntax
 | |
| highlighting, Cowsay and figlet integration, ANSI art, JPEG display.")
 | |
|     (license license:gpl3+)))
 |