2013-06-16 23:15:55 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2023-05-20 13:52:58 +00:00
|
|
|
|
;;; Copyright © 2013, 2015, 2021, 2023 Ludovic Courtès <ludo@gnu.org>
|
2020-03-11 14:23:52 +00:00
|
|
|
|
;;; Copyright © 2015, 2020 Efraim Flashner <efraim@flashner.co.il>
|
2017-09-29 10:36:20 +00:00
|
|
|
|
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
2022-12-07 09:58:08 +00:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019, 2022 Ricardo Wurmus <rekado@elephly.net>
|
2018-02-20 03:01:34 +00:00
|
|
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-11-06 08:30:04 +00:00
|
|
|
|
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
|
2018-03-31 21:47:36 +00:00
|
|
|
|
;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
|
2022-01-18 16:35:06 +00:00
|
|
|
|
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
2020-04-01 23:22:22 +00:00
|
|
|
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
2020-11-23 07:26:22 +00:00
|
|
|
|
;;; Copyright © 2020 Pjotr Prins <pjotr.guix@thebird.nl>
|
2021-04-14 20:55:00 +00:00
|
|
|
|
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
2021-12-09 22:56:32 +00:00
|
|
|
|
;;; Copyright © 2021 Giacomo Leidi <goodoldpaul@autistici.org>
|
2021-12-15 22:01:02 +00:00
|
|
|
|
;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
|
2022-07-24 01:33:51 +00:00
|
|
|
|
;;; Copyright © 2021 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
2024-04-15 20:02:09 +00:00
|
|
|
|
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
2013-06-16 23:15:55 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; 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 graphviz)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
2022-12-07 09:58:08 +00:00
|
|
|
|
#:use-module (guix build-system pyproject)
|
2016-11-26 14:27:56 +00:00
|
|
|
|
#:use-module (guix build-system python)
|
2013-06-16 23:15:55 +00:00
|
|
|
|
#:use-module (guix download)
|
2018-12-31 13:48:15 +00:00
|
|
|
|
#:use-module (guix git-download)
|
|
|
|
|
#:use-module (guix utils)
|
2021-07-23 15:11:55 +00:00
|
|
|
|
#:use-module (guix gexp)
|
2020-11-23 07:44:57 +00:00
|
|
|
|
#:use-module (gnu packages)
|
2019-01-13 09:06:06 +00:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2024-04-15 20:02:09 +00:00
|
|
|
|
#:use-module (gnu packages bash)
|
2019-01-13 09:06:06 +00:00
|
|
|
|
#:use-module (gnu packages bison)
|
2018-12-31 13:48:17 +00:00
|
|
|
|
#:use-module (gnu packages check)
|
2019-01-13 09:06:06 +00:00
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages fontutils)
|
|
|
|
|
#:use-module (gnu packages gd)
|
2024-04-15 20:02:09 +00:00
|
|
|
|
#:use-module (gnu packages gl)
|
2013-06-16 23:15:55 +00:00
|
|
|
|
#:use-module (gnu packages glib)
|
2019-01-13 09:06:06 +00:00
|
|
|
|
#:use-module (gnu packages gnome)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
2016-05-10 13:54:01 +00:00
|
|
|
|
#:use-module (gnu packages guile)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 12:39:02 +00:00
|
|
|
|
#:use-module (gnu packages image)
|
2013-06-16 23:15:55 +00:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2019-01-13 09:06:06 +00:00
|
|
|
|
#:use-module (gnu packages python)
|
2021-10-01 19:49:13 +00:00
|
|
|
|
#:use-module (gnu packages python-build)
|
2021-04-14 20:55:00 +00:00
|
|
|
|
#:use-module (gnu packages python-check)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 13:21:30 +00:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2021-04-14 20:55:00 +00:00
|
|
|
|
#:use-module (gnu packages sphinx)
|
2016-05-10 13:54:01 +00:00
|
|
|
|
#:use-module (gnu packages swig)
|
2018-03-31 21:47:36 +00:00
|
|
|
|
#:use-module (gnu packages tex)
|
2024-04-15 20:02:09 +00:00
|
|
|
|
#:use-module (gnu packages vulkan)
|
2019-01-13 09:06:06 +00:00
|
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
|
#:use-module (gnu packages xorg)
|
2017-10-10 19:59:43 +00:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:))
|
2013-06-16 23:15:55 +00:00
|
|
|
|
|
|
|
|
|
(define-public graphviz
|
|
|
|
|
(package
|
|
|
|
|
(name "graphviz")
|
2022-11-18 21:02:59 +00:00
|
|
|
|
(version "7.0.1")
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(source (origin
|
2017-07-12 14:25:54 +00:00
|
|
|
|
(method url-fetch)
|
2021-07-23 15:17:30 +00:00
|
|
|
|
(uri (string-append "https://gitlab.com/api/v4/projects/4207231"
|
|
|
|
|
"/packages/generic/graphviz-releases/"
|
|
|
|
|
version "/graphviz-" version ".tar.xz"))
|
2017-07-12 14:25:54 +00:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-11-18 21:02:59 +00:00
|
|
|
|
"1b6x3g03j7q77lzyvdp34hkzld5sg1l1ippc6sh1qxnmm59xs3ly"))))
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
;; FIXME: rtest/rtest.sh is a ksh script (!). Add ksh as an input.
|
2021-07-23 15:11:55 +00:00
|
|
|
|
(list #:tests? #f
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
2022-07-28 12:29:34 +00:00
|
|
|
|
(add-after 'install 'move-guile-bindings
|
2021-07-23 15:11:55 +00:00
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2022-11-18 21:02:59 +00:00
|
|
|
|
(let* ((lib (string-append #$output "/lib"))
|
2021-07-23 15:14:13 +00:00
|
|
|
|
(extdir (string-append lib "/guile/"
|
|
|
|
|
#$(version-major+minor
|
|
|
|
|
(package-version
|
|
|
|
|
(this-package-input "guile")))
|
|
|
|
|
"/extensions")))
|
2021-07-23 15:11:55 +00:00
|
|
|
|
(mkdir-p extdir)
|
|
|
|
|
(rename-file (string-append
|
|
|
|
|
lib "/graphviz/guile/libgv_guile.so")
|
|
|
|
|
(string-append extdir
|
|
|
|
|
"/libgv_guile.so"))))))))
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(inputs
|
2022-07-28 12:26:52 +00:00
|
|
|
|
(list libxrender
|
|
|
|
|
libx11
|
|
|
|
|
gts
|
|
|
|
|
gd
|
|
|
|
|
guile-3.0 ;Guile bindings
|
|
|
|
|
pango
|
|
|
|
|
fontconfig
|
|
|
|
|
freetype
|
|
|
|
|
libltdl
|
|
|
|
|
libxaw
|
|
|
|
|
expat
|
|
|
|
|
libjpeg-turbo
|
|
|
|
|
libpng))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 11:01:56 +00:00
|
|
|
|
(native-inputs
|
2022-11-18 21:02:59 +00:00
|
|
|
|
(list bison
|
|
|
|
|
pkg-config
|
|
|
|
|
swig))
|
|
|
|
|
(outputs '("out" "doc")) ;5 MiB of html + pdfs
|
2021-07-22 15:14:14 +00:00
|
|
|
|
(home-page "https://www.graphviz.org/")
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(synopsis "Graph visualization software")
|
|
|
|
|
(description
|
2013-06-17 10:25:19 +00:00
|
|
|
|
"Graphviz is a graph visualization tool suite. Graph visualization is a
|
2013-06-16 23:15:55 +00:00
|
|
|
|
way of representing structural information as diagrams of abstract graphs and
|
|
|
|
|
networks. It has important applications in networking, bioinformatics,
|
|
|
|
|
software engineering, database and web design, machine learning, and in visual
|
|
|
|
|
interfaces for other technical domains.")
|
2022-07-28 17:03:58 +00:00
|
|
|
|
(properties
|
|
|
|
|
'((release-monitoring-url . "https://graphviz.org/download/source/")))
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(license license:epl1.0)))
|
|
|
|
|
|
2023-05-20 13:52:58 +00:00
|
|
|
|
(define-public graphviz-minimal
|
|
|
|
|
(package/inherit graphviz
|
|
|
|
|
(name "graphviz-minimal")
|
|
|
|
|
(inputs (modify-inputs (package-inputs graphviz)
|
|
|
|
|
(delete "libxrender" "libx11" "pango" "libxaw")))
|
|
|
|
|
(synopsis "Graph visualization software (without X11 support)")))
|
|
|
|
|
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(define-public python-graphviz
|
|
|
|
|
(package
|
|
|
|
|
(name "python-graphviz")
|
2022-12-07 09:58:08 +00:00
|
|
|
|
(version "0.20.1")
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "graphviz" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-07 09:58:08 +00:00
|
|
|
|
"1y1b956r01kg7qarkkrivhn71q64k0gbq6bcybd4gfd3v95g2n4c"))))
|
|
|
|
|
(build-system pyproject-build-system)
|
2020-01-16 17:42:27 +00:00
|
|
|
|
(arguments
|
2022-12-07 09:58:08 +00:00
|
|
|
|
(list
|
|
|
|
|
#:phases
|
|
|
|
|
'(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'prepare-chec
|
|
|
|
|
;; Needed for fontconfig cache directories
|
|
|
|
|
(lambda _ (setenv "HOME" (getcwd)))))))
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list unzip
|
|
|
|
|
;; For tests.
|
|
|
|
|
graphviz
|
2023-02-21 16:55:35 +00:00
|
|
|
|
python-mock
|
2021-12-13 16:18:24 +00:00
|
|
|
|
python-pytest
|
|
|
|
|
python-pytest-cov
|
|
|
|
|
python-pytest-mock))
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(home-page "https://github.com/xflr6/graphviz")
|
|
|
|
|
(synopsis "Simple Python interface for Graphviz")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides a simple Python interface for the Graphviz graph
|
|
|
|
|
visualization tool suite.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2018-12-31 13:48:17 +00:00
|
|
|
|
(define-public python-pygraphviz
|
|
|
|
|
(package
|
|
|
|
|
(name "python-pygraphviz")
|
2023-02-15 16:19:51 +00:00
|
|
|
|
(version "1.10")
|
2018-12-31 13:48:17 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 20:53:28 +00:00
|
|
|
|
(url "https://github.com/pygraphviz/pygraphviz")
|
2018-12-31 13:48:17 +00:00
|
|
|
|
(commit (string-append "pygraphviz-" version))))
|
|
|
|
|
(file-name (string-append "pygraphviz-" version "-checkout"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2023-02-15 16:19:51 +00:00
|
|
|
|
"1yrzjp5n86ynlj32p5dj1aj67md6bzkk8hac74j5y3mbl94m259g"))))
|
2018-12-31 13:48:17 +00:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list graphviz))
|
2018-12-31 13:48:17 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list python-nose python-mock python-pytest
|
|
|
|
|
python-doctest-ignore-unicode))
|
2020-03-20 23:45:44 +00:00
|
|
|
|
(home-page "https://pygraphviz.github.io")
|
2018-12-31 13:48:17 +00:00
|
|
|
|
(synopsis "Python interface to Graphviz")
|
|
|
|
|
(description "PyGraphviz is a Python interface to the Graphviz graph
|
|
|
|
|
layout and visualization package. With PyGraphviz you can create, edit, read,
|
|
|
|
|
write, and draw graphs using Python to access the Graphviz graph data
|
|
|
|
|
structure and layout algorithms.")
|
|
|
|
|
(license license:bsd-3)))
|
|
|
|
|
|
2021-04-14 20:55:00 +00:00
|
|
|
|
(define-public python-uqbar
|
|
|
|
|
(package
|
|
|
|
|
(name "python-uqbar")
|
2023-11-17 20:48:02 +00:00
|
|
|
|
(version "0.5.9")
|
2021-04-14 20:55:00 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/josiah-wolf-oberholtzer/uqbar")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2023-11-17 20:48:02 +00:00
|
|
|
|
"0c573nzpm51qgz2g296f8pw8ys0i3r6daynxk06zagk5l5fgw9ar"))
|
|
|
|
|
(patches (search-patches "python-uqbar-python3.10.patch"))))
|
2021-04-14 20:55:00 +00:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(invoke "python" "-m" "pytest" "tests"))
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list graphviz
|
|
|
|
|
python-flake8
|
|
|
|
|
python-isort
|
|
|
|
|
python-mypy
|
|
|
|
|
python-pytest
|
|
|
|
|
python-pytest-cov))
|
2021-04-14 20:55:00 +00:00
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list python-black python-sphinx python-sphinx-rtd-theme
|
|
|
|
|
python-unidecode))
|
2021-04-14 20:55:00 +00:00
|
|
|
|
(home-page "https://github.com/josiah-wolf-oberholtzer/uqbar")
|
|
|
|
|
(synopsis "Tools for building documentation with Sphinx, Graphviz and LaTeX")
|
|
|
|
|
(description
|
|
|
|
|
"This package contains tools for building documentation with Sphinx,
|
|
|
|
|
Graphviz and LaTeX.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(define-public gts
|
|
|
|
|
(package
|
|
|
|
|
(name "gts")
|
|
|
|
|
(version "0.7.6")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-07-21 06:35:30 +00:00
|
|
|
|
(uri (string-append "mirror://sourceforge/gts/gts/" version
|
|
|
|
|
"/gts-" version ".tar.gz"))
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2018-02-20 03:01:34 +00:00
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'pre-check
|
|
|
|
|
(lambda _
|
|
|
|
|
(chmod "test/boolean/test.sh" #o777)
|
|
|
|
|
#t)))
|
2013-06-16 23:15:55 +00:00
|
|
|
|
|
|
|
|
|
;; Some data files used by the test suite are missing.
|
|
|
|
|
;; See <http://sourceforge.net/p/gts/bugs/41/>.
|
|
|
|
|
#:tests? #f))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 11:01:56 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list pkg-config))
|
2013-06-16 23:15:55 +00:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; The gts.pc file has glib-2.0 as required.
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list glib))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
|
(home-page "https://gts.sourceforge.net/")
|
2013-06-16 23:15:55 +00:00
|
|
|
|
|
|
|
|
|
;; Note: Despite the name, this is not official GNU software.
|
|
|
|
|
(synopsis "Triangulated Surface Library")
|
|
|
|
|
(description
|
|
|
|
|
"Library intended to provide a set of useful functions to deal with
|
|
|
|
|
3D surfaces meshed with interconnected triangles.")
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(license license:lgpl2.0+)))
|
2016-11-26 14:27:56 +00:00
|
|
|
|
|
|
|
|
|
(define-public xdot
|
|
|
|
|
(package
|
|
|
|
|
(name "xdot")
|
2024-04-15 20:02:09 +00:00
|
|
|
|
(version "1.3")
|
2016-11-26 14:27:56 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2024-04-15 20:02:09 +00:00
|
|
|
|
;; PyPI tarball is missing some test files.
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/jrfonseca/xdot.py/")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "00j147183yf6wp1rnlp26vvsnsz5v56qgffdpd2ijkpvphvyyiyi"))))
|
2016-11-26 14:27:56 +00:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
2024-04-15 20:02:09 +00:00
|
|
|
|
(list
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'start-xserver
|
|
|
|
|
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
|
|
|
|
(let ((Xvfb (search-input-file (or native-inputs inputs)
|
|
|
|
|
"/bin/Xvfb")))
|
|
|
|
|
(system (format #f "~a :1 -screen 0 640x480x24 &"
|
|
|
|
|
Xvfb))
|
|
|
|
|
(setenv "DISPLAY" ":1"))))
|
|
|
|
|
(add-before 'check 'set-test-environment
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((lib (search-input-file inputs
|
|
|
|
|
"lib/libvulkan.so.1")))
|
|
|
|
|
(setenv "XDG_RUNTIME_DIR"
|
|
|
|
|
(getcwd))
|
|
|
|
|
(setenv "LIBGL_ALWAYS_SOFTWARE" "1")
|
|
|
|
|
(format (current-error-port) "~a~%"
|
|
|
|
|
(assoc-ref inputs "gtk+"))
|
|
|
|
|
(setenv "LD_LIBRARY_PATH"
|
|
|
|
|
(dirname lib)))))
|
|
|
|
|
;; We wrap xdot, so that we don't propagate gtk+ and graphviz
|
|
|
|
|
(add-after 'install 'wrap
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH"))
|
|
|
|
|
(python-path (getenv "GUIX_PYTHONPATH")))
|
|
|
|
|
(wrap-program (string-append out "/bin/xdot")
|
|
|
|
|
`("GI_TYPELIB_PATH" ":" prefix
|
|
|
|
|
(,gi-typelib-path))
|
|
|
|
|
`("GUIX_PYTHONPATH" ":" prefix
|
|
|
|
|
(,python-path))))))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
|
(invoke "python" "test.py")))))))
|
|
|
|
|
(native-inputs (list gobject-introspection xorg-server-for-tests))
|
|
|
|
|
(inputs (list at-spi2-core
|
|
|
|
|
bash-minimal
|
|
|
|
|
(librsvg-for-system)
|
|
|
|
|
mesa
|
|
|
|
|
mesa-opencl
|
|
|
|
|
harfbuzz
|
|
|
|
|
graphviz
|
|
|
|
|
gtk+
|
|
|
|
|
python-numpy
|
|
|
|
|
python-pycairo
|
|
|
|
|
python-pygobject
|
|
|
|
|
vulkan-loader))
|
gnu: Update pypi.python.org home pages & use HTTPS.
* gnu/packages/check.scm (python-unittest2, python-pytest-localserver)
(python-discover)[home-page]: Follow (HTTPS) redirections.
* gnu/packages/fontutils.scm (python2-defcon)[home-page]: Likewise.
* gnu/packages/glib.scm (python2-pygobject-2)[home-page]: Likewise.
* gnu/packages/graph.scm (python-igraph)[home-page]: Likewise.
* gnu/packages/graphviz.scm (xdot)[home-page]: Likewise.
* gnu/packages/pdf.scm (python-poppler-qt5)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-zope-event, python-zope-testing)
(python-zope-testrunner, python-zope-i18nmessageid, python-zope-schema)
(python-zope-configuration, python-zope-proxy, python-zope-location)
(python-zope-security))[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-setuptools,python-six)
(python2-dogtail, python2-enum, python-enum34, python-unidecode)
(python-numpydoc, python-decorator, python-drmaa, python-pathlib2)
(python-ly, python-msgpack, python-termcolor, python-colorama)
(python-pluggy, python2-pathlib2, python-rfc3987)[home-page]: Likewise.
2020-01-18 21:00:24 +00:00
|
|
|
|
(home-page "https://pypi.org/project/xdot/")
|
2016-11-26 14:27:56 +00:00
|
|
|
|
(synopsis "Interactive viewer for graphviz dot files")
|
2024-04-15 20:02:09 +00:00
|
|
|
|
(description
|
|
|
|
|
"Xdot is an interactive viewer for graphs written in
|
2016-11-26 14:27:56 +00:00
|
|
|
|
@code{graphviz}’s dot language. Internally, it uses the xdot output format as
|
2020-05-15 09:48:44 +00:00
|
|
|
|
an intermediate format, and @code{gtk} and @code{cairo} for rendering. Xdot
|
|
|
|
|
can be used either as a standalone application, or as a Python library.")
|
2017-10-10 19:59:43 +00:00
|
|
|
|
(license license:lgpl3+)))
|
2017-11-06 08:30:04 +00:00
|
|
|
|
|
|
|
|
|
(define-public python-pydot
|
|
|
|
|
(package
|
|
|
|
|
(name "python-pydot")
|
2022-01-18 16:37:21 +00:00
|
|
|
|
(version "1.4.2")
|
2017-11-06 08:30:04 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "pydot" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-01-18 16:37:21 +00:00
|
|
|
|
"0z80zwldf7ffkwrpm28hixsiqp3053j7g281xd6phmnbkfiq3014"))))
|
2017-11-06 08:30:04 +00:00
|
|
|
|
(build-system python-build-system)
|
2020-11-23 07:44:57 +00:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
;; Taken from .travis.yaml
|
|
|
|
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
|
(with-directory-excursion "test"
|
2022-01-18 16:37:21 +00:00
|
|
|
|
(invoke "python" "pydot_unittest.py"))))))))
|
2018-09-21 06:46:11 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
;; For tests.
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list graphviz python-chardet))
|
2017-11-06 08:30:04 +00:00
|
|
|
|
(propagated-inputs
|
2022-01-18 16:35:06 +00:00
|
|
|
|
;; XXX: Two test failures with 3.0+:
|
|
|
|
|
;; https://github.com/pydot/pydot/issues/277
|
|
|
|
|
(list python-pyparsing-2.4.7))
|
2020-11-23 07:47:47 +00:00
|
|
|
|
(home-page "https://github.com/pydot/pydot")
|
2017-11-06 08:30:04 +00:00
|
|
|
|
(synopsis "Python interface to Graphviz's DOT language")
|
|
|
|
|
(description
|
|
|
|
|
"Pydot provides an interface to create, handle, modify and process
|
|
|
|
|
graphs in Graphviz's DOT language, written in pure Python.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2018-03-31 21:47:36 +00:00
|
|
|
|
(define-public dot2tex
|
|
|
|
|
(package
|
|
|
|
|
(name "dot2tex")
|
2020-01-09 22:22:01 +00:00
|
|
|
|
(version "2.11.3")
|
2018-03-31 21:47:36 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "dot2tex" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-01-09 22:22:01 +00:00
|
|
|
|
"1kp77wiv7b5qib82i3y3sn9r49rym43aaqm5aw1bwnzfbbq2m6i9"))))
|
2018-03-31 21:47:36 +00:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
2022-04-29 21:34:43 +00:00
|
|
|
|
(list
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(invoke "pytest" "-vv" "tests"
|
|
|
|
|
;; The test_semicolon test fails for unknown reason
|
|
|
|
|
;; (see:
|
|
|
|
|
;; https://github.com/kjellmf/dot2tex/issues/94).
|
|
|
|
|
"-k" "not test_semicolon")))))))
|
2023-07-01 20:37:49 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
(list python-pytest
|
|
|
|
|
(texlive-updmap.cfg
|
2023-07-03 10:51:49 +00:00
|
|
|
|
(list texlive-pgf
|
2023-07-01 20:37:49 +00:00
|
|
|
|
texlive-preview
|
|
|
|
|
texlive-pstricks
|
|
|
|
|
texlive-xcolor
|
|
|
|
|
texlive-xkeyval))))
|
2022-04-29 21:34:43 +00:00
|
|
|
|
(inputs (list graphviz))
|
2023-07-01 20:37:49 +00:00
|
|
|
|
(propagated-inputs (list python-pyparsing))
|
2018-03-31 21:47:36 +00:00
|
|
|
|
(home-page "https://github.com/kjellmf/dot2tex")
|
|
|
|
|
(synopsis "Graphviz to LaTeX converter")
|
|
|
|
|
(description
|
|
|
|
|
"The purpose of @code{dot2tex} is to give graphs generated by Graphviz a
|
|
|
|
|
more LaTeX friendly look and feel. This is accomplished by converting
|
|
|
|
|
@code{xdot} output from Graphviz to a series of PSTricks or PGF/TikZ commands.
|
|
|
|
|
This approach allows:
|
|
|
|
|
|
|
|
|
|
@itemize @bullet
|
|
|
|
|
@item Typesetting labels with LaTeX, allowing mathematical notation
|
|
|
|
|
@item Using native PSTricks and PGF/TikZ commands for drawing arrows
|
|
|
|
|
@item Using backend specific styles to customize the output
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license license:expat)))
|
2021-12-09 22:56:32 +00:00
|
|
|
|
|
|
|
|
|
(define-public gprof2dot
|
|
|
|
|
(package
|
|
|
|
|
(name "gprof2dot")
|
|
|
|
|
(version "2021.02.21")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/jrfonseca/gprof2dot")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1jjhsjf5fdi1fkn7mvhnzkh6cynl8gcjrygd3cya5mmda3akhzic"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
|
(invoke "python" "tests/test.py")))))))
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list graphviz))
|
2021-12-09 22:56:32 +00:00
|
|
|
|
(home-page "https://github.com/jrfonseca/gprof2dot")
|
|
|
|
|
(synopsis "Generate a dot graph from the output of several profilers")
|
|
|
|
|
(description "This package provides a Python script to convert the output
|
|
|
|
|
from many profilers into a dot graph.
|
|
|
|
|
|
|
|
|
|
It can:
|
|
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
|
|
|
|
|
|
@item prune nodes and edges below a certain threshold;
|
|
|
|
|
@item use an heuristic to propagate time inside mutually recursive functions;
|
|
|
|
|
@item use color efficiently to draw attention to hot-spots;
|
|
|
|
|
@item work on any platform where Python and Graphviz is available.
|
|
|
|
|
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license license:lgpl3+)))
|