;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016, 2020, 2021 Ricardo Wurmus ;;; Copyright © 2015 Federico Beffa ;;; Copyright © 2016 Ben Woodcroft ;;; Copyright © 2016 Hartmut Goebel ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Marius Bakke ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Maxim Cournoyer ;;; Copyright © 2019 Giacomo Leidi ;;; Copyright © 2020 Pierre Langlois ;;; Copyright © 2020, 2021 Vinicius Monego ;;; Copyright © 2021 Greg Hogan ;;; ;;; 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 publ
aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2016-02-25 22:20:58 -0500
committerMark H Weaver <mhw@netris.org>2016-02-25 22:24:32 -0500
commit4ed737b2ab65c3af57a6774439d86b75140fbf34 (patch)
tree0fb10c198b658a6127ec0832c39075d186c7098b /gnu
parentb31fbea566d432ae8be616ac774d51a23436c362 (diff)
downloadguix-4ed737b2ab65c3af57a6774439d86b75140fbf34.tar.gz
guix-4ed737b2ab65c3af57a6774439d86b75140fbf34.zip
gnu: gtk-doc: Improve fix-docbook phase.
* gnu/packages/gtk.scm (gtk-doc)[arguments]: In the 'fix-docbook' phase, avoid hard-coding the docbook-xsl version number, and return #t.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gtk.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 9f2e514e14..4fb4e8dc0d 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1121,9 +1121,10 @@ information.")
;; docbook-xsl catalog explicitly and get on with life.
(("\"\\$XML_CATALOG_FILE\" \
\"http://docbook.sourceforge.net/release/xsl/")
- (string-append (assoc-ref %build-inputs "docbook-xsl")
- "/xml/xsl/docbook-xsl-1.78.1/catalog.xml \
-\"http://docbook.sourceforge.net/release/xsl/"))))))
+ (string-append (car (find-files (assoc-ref inputs "docbook-xsl")
+ "^catalog.xml$"))
+ " \"http://docbook.sourceforge.net/release/xsl/")))
+ #t)))
#:configure-flags
(list (string-append "--with-xml-catalog="
(assoc-ref %build-inputs "docbook-xml")
(method url-fetch) (uri (pypi-uri "weave" version)) (sha256 (base32 "0jnm3584mfichgwgrd1gk5i42ll9c08nkw9716n947n4338f6ghs")))) (build-system python-build-system) (arguments `(#:python ,python-2 #:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "nosetests" "-v" "--exclude" "test_(user|incorrect_ownership|char_fail|obj_fail)")))))) (propagated-inputs `(("python-numpy" ,python2-numpy))) (native-inputs `(("python-nose" ,python2-nose))) (home-page "https://www.scipy.org/") (synopsis "Tools for including C/C++ code within Python code") (description "Weave is the stand-alone version of the obsolete Scipy submodule @code{scipy.weave}. It is Python 2.x only, and is provided for users that need new versions of Scipy but have existing code that still depends on @code{scipy.weave}. For new code, users are recommended to use Cython.") (license license:bsd-3))) (define-public python-scikit-fuzzy (package (name "python-scikit-fuzzy") (version "0.4.2") (source (origin (method url-fetch) (uri (pypi-uri "scikit-fuzzy" version)) (sha256 (base32 "0bp1n771fj44kdp7a00bcvfwirvv2rc803b7g6yf3va7v0j29c8s")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "nosetests" "-s" "-v" "skfuzzy") #t))))) (native-inputs `(("python-nose" ,python-nose))) (propagated-inputs `(("python-networkx" ,python-networkx) ("python-numpy" ,python-numpy) ("python-scipy" ,python-scipy))) (home-page "https://github.com/scikit-fuzzy/scikit-fuzzy") (synopsis "Fuzzy logic toolkit for SciPy") (description "This package implements many useful tools for projects involving fuzzy logic, also known as grey logic.") (license license:bsd-3))) (define-public python-scikit-image (package (name "python-scikit-image") (version "0.18.1") (source (origin (method url-fetch) (uri (pypi-uri "scikit-image" version)) (sha256 (base32 "0wgisa03smhrphcjnhq7waa5vyyd32b67hblapjbqrqqj751idpv")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-before 'build 'change-home-dir (lambda _ ;; Change from /homeless-shelter to /tmp for write permission. (setenv "HOME" "/tmp") #t)) (replace 'build (lambda _ (invoke "make"))) (replace 'check (lambda _ ;; The following tests require online data. (invoke "python" "-m" "pytest" "skimage" "--doctest-modules" "-k" (string-append "not test_ndim" " and not test_skin"))))))) ;; See requirements/ for the list of build and run time requirements. ;; NOTE: scikit-image has an optional dependency on python-pooch, however ;; propagating it would enable many more tests that require online data. (propagated-inputs `(("python-cloudpickle" ,python-cloudpickle) ("python-dask" ,python-dask) ("python-imageio" ,python-imageio) ("python-matplotlib" ,python-matplotlib) ("python-networkx" ,python-networkx) ("python-numpy" ,python-numpy) ("python-pillow" ,python-pillow) ("python-pywavelets" ,python-pywavelets) ("python-scipy" ,python-scipy) ("python-tifffile" ,python-tifffile))) (native-inputs `(("python-codecov" ,python-codecov) ("python-cython" ,python-cython) ("python-flake8" ,python-flake8) ("python-pytest" ,python-pytest) ("python-pytest-cov" ,python-pytest-cov) ("python-pytest-localserver" ,python-pytest-localserver) ("python-wheel" ,python-wheel))) (home-page "https://scikit-image.org/") (synopsis "Image processing in Python") (description "Scikit-image is a collection of algorithms for image processing.") (license license:bsd-3))) (define-public python-sgp4 (package (name "python-sgp4") (version "2.12") (source (origin (method url-fetch) (uri (pypi-uri "sgp4" version)) (sha256 (base32 "0dncp9i5b6afkg7f8mj9j0qzsp008b8v73yc0qkmizhpns7mvwvx")))) (build-system python-build-system) (propagated-inputs `(("python-numpy" ,python-numpy))) (home-page "https://github.com/brandon-rhodes/python-sgp4") (synopsis "Track earth satellite TLE orbits using SGP4") (description "This package provides a Python implementation of the most recent version of the SGP4 satellite tracking algorithm.") (license license:expat))) (define-public python-pandas (package (name "python-pandas") (version "1.0.5") (source (origin (method url-fetch) (uri (pypi-uri "pandas" version)) (sha256 (base32 "1a2gv3g6jr6vb5ca43fkwjl5xf86wpfz8y3zcy787adjl0hdkib9")))) (build-system python-build-system) (arguments `(#:modules ((guix build utils) (guix build python-build-system) (ice-9 ftw) (srfi srfi-26)) #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-which (lambda* (#:key inputs #:allow-other-keys) (let ((which (assoc-ref inputs "which"))) (substitute* "pandas/io/clipboard/__init__.py" (("^WHICH_CMD = .*") (string-append "WHICH_CMD = \"" which "\"\n")))) #t)) (add-before 'check 'prepare-x (lambda _ (system "Xvfb &") (setenv "DISPLAY" ":0") ;; xsel needs to write a log file. (setenv "HOME" "/tmp") #t)) (replace 'check (lambda _ (let ((build-directory (string-append (getcwd) "/build/" (car (scandir "build" (cut string-prefix? "lib." <>)))))) ;; Disable the "strict data files" option which causes ;; the build to error out if required data files are ;; not available (as is the case with PyPI archives). (substitute* "setup.cfg" (("addopts = --strict-data-files") "addopts = ")) (with-directory-excursion build-directory (invoke "pytest" "-vv" "pandas" "--skip-slow" "--skip-network")))))))) (propagated-inputs `(("python-jinja2" ,python-jinja2) ("python-numpy" ,python-numpy) ("python-openpyxl" ,python-openpyxl) ("python-pytz" ,python-pytz) ("python-dateutil" ,python-dateutil) ("python-xlrd" ,python-xlrd))) (inputs `(("which" ,which) ("xclip" ,xclip) ("xsel" ,xsel))) (native-inputs `(("python-cython" ,python-cython) ("python-beautifulsoup4" ,python-beautifulsoup4) ("python-lxml" ,python-lxml) ("python-html5lib" ,python-html5lib) ("python-nose" ,python-nose) ("python-pytest" ,python-pytest) ("python-pytest-mock" ,python-pytest-mock) ;; Needed to test clipboard support. ("xorg-server" ,xorg-server-for-tests))) (home-page "https://pandas.pydata.org") (synopsis "Data structures for data analysis, time series, and statistics") (description "Pandas is a Python package providing fast, flexible, and expressive data structures designed to make working with structured (tabular, multidimensional, potentially heterogeneous) and time series data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, real world data analysis in Python.") (properties `((python2-variant . ,(delay python2-pandas)))) (license license:bsd-3))) (define-public python-pandas-0.25 (package (inherit python-pandas) (version "0.25.3") (source (origin (method url-fetch) (uri (pypi-uri "pandas" version)) (sha256 (base32 "191048m6kdc6yfvqs9w412lq60cfvigrsb57y0x116lwibgp9njj")))) (arguments (substitute-keyword-arguments (package-arguments python-pandas) ((#:phases phases) `(modify-phases ,phases (replace 'patch-which (lambda* (#:key inputs #:allow-other-keys) (let ((which (assoc-ref inputs "which"))) (substitute* "pandas/io/clipboard/__init__.py" (("^CHECK_CMD = .*") (string-append "CHECK_CMD = \"" which "\"\n")))) #t)) (delete 'prepare-x))))))) ;; Pandas 0.24.x are the last versions that support Python 2. (define-public python2-pandas (let ((pandas (package-with-python2 (strip-python2-variant python-pandas-0.25)))) (package (inherit pandas) (version "0.24.2") (source (origin (method url-fetch) (uri (pypi-uri "pandas" version)) (sha256 (base32 "18imlm8xbhcbwy4wa957a1fkamrcb0z988z006jpfda3ki09z4ag")) (modules '((guix build utils))) (snippet '(begin ;; Adjust for renamed error message in Python 2.7.17. Taken ;; from . (substitute* "pandas/io/parsers.py" (("if 'NULL byte' in msg:") "if 'NULL byte' in msg or 'line contains NUL' in msg:")) #t))))))) (define-public python-bottleneck (package (name "python-bottleneck") (version "1.3.2") (source (origin (method url-fetch) (uri (pypi-uri "Bottleneck" version)) (sha256 (base32 "0wz5320jx3n4q2nsvwvc7cpi66b46qbals9v53m955rmcq5ry5r0")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "python" "setup.py" "pytest")))))) (native-inputs `(("python-hypothesis" ,python-hypothesis) ("python-pytest" ,python-pytest) ("python-pytest-runner" ,python-pytest-runner))) (propagated-inputs `(("python-numpy" ,python-numpy))) (home-page "https://github.com/pydata/bottleneck") (synopsis "Fast NumPy array functions written in C") (description "Bottleneck is a collection of fast, NaN-aware NumPy array functions written in C.") (license license:bsd-2))) (define-public python-baycomp (package (name "python-baycomp") (version "1.0.2") (source (origin (method url-fetch) (uri (pypi-uri "baycomp" version)) (sha256 (base32 "1c1354a7b3g8slychjgyjxqdm8z40z9kviyl9n4g9kfpdg0p4d64")))) (build-system python-build-system) (propagated-inputs `(("python-matplotlib" ,python-matplotlib) ("python-numpy" ,python-numpy) ("python-scipy" ,python-scipy))) (home-page "https://github.com/janezd/baycomp") (synopsis "Library for comparison of Bayesian classifiers") (description "Baycomp is a library for Bayesian comparison of classifiers. Functions in the library compare two classifiers on one or on multiple data sets. They compute three probabilities: the probability that the first classifier has higher scores than the second, the probability that differences are within the region of practical equivalence (rope), or that the second classifier has higher scores.") (license license:expat))) (define-public python-xarray (package (name "python-xarray") (version "0.15.1") (source (origin (method url-fetch) (uri (pypi-uri "xarray" version)) (sha256 (base32 "1yx8j66b7rn10m2l6gmn8yr9cn38pi5cj0x0wwpy4hdnhy6i7qv4")))) (build-system python-build-system) (native-inputs `(("python-setuptools-scm" ,python-setuptools-scm) ("python-pytest" ,python-pytest))) (propagated-inputs `(("python-numpy" ,python-numpy) ("python-pandas" ,python-pandas))) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "pytest")))))) (home-page "https://github.com/pydata/xarray") (synopsis "N-D labeled arrays and datasets") (description "Xarray (formerly xray) makes working with labelled multi-dimensional arrays simple, efficient, and fun! Xarray introduces labels in the form of dimensions, coordinates and attributes on top of raw NumPy-like arrays, which allows for a more intuitive, more concise, and less error-prone developer experience. The package includes a large and growing library of domain-agnostic functions for advanced analytics and visualization with these data structures.") (license license:asl2.0))) (define-public python-msgpack-numpy (package (name "python-msgpack-numpy") (version "0.4.6.post0") (source (origin (method url-fetch) (uri (pypi-uri "msgpack-numpy" version)) (sha256 (base32 "0syzy645mwcy7lfjwz6pc8f9p2vv1qk4limc8iina3l5nnf0rjyz")))) (build-system python-build-system) (propagated-inputs `(("python-msgpack" ,python-msgpack) ("python-numpy" ,python-numpy))) (home-page "https://github.com/lebedov/msgpack-numpy") (synopsis "Numpy data serialization using msgpack") (description "This package provides encoding and decoding routines that enable the serialization and deserialization of numerical and array data types provided by numpy using the highly efficient @code{msgpack} format. Serialization of Python's native complex data types is also supported.") (license license:bsd-3))) (define-public python-statannot (package (name "python-statannot") (version "0.2.3") (source (origin (method url-fetch) (uri (pypi-uri "statannot" version)) (sha256 (base32 "1f8c2sylzr7lpjbyqxsqlp9xi8rj3d8c9hfh98x4jbb83zxc4026")))) (build-system python-build-system) (propagated-inputs `(("python-numpy" ,python-numpy) ("python-seaborn" ,python-seaborn) ("python-matplotlib" ,python-matplotlib) ("python-pandas" ,python-pandas) ("python-scipy" ,python-scipy))) (home-page "https://github.com/webermarcolivier/statannot") (synopsis "Add annotations to existing plots generated by seaborn") (description "This is a Python package to compute statistical test and add statistical annotations on an existing boxplots and barplots generated by seaborn.") (license license:expat))) (define-public python-upsetplot (package (name "python-upsetplot") (version "0.4.1") (source (origin (method url-fetch) (uri (pypi-uri "UpSetPlot" version)) (sha256 (base32 "0kwljcmsvrxm33y3ssham2bwv4a5m31mv96y9h18va0cv7s3mqn1")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'fix-versioning (lambda _ (substitute* "setup.py" (("pytest-cov<2.6") "pytest-cov")))) (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "pytest" "-v" "--doctest-modules")))))) (propagated-inputs `(("python-matplotlib" ,python-matplotlib) ("python-pandas" ,python-pandas))) (native-inputs `(("python-pytest-runner" ,python-pytest-runner) ("python-pytest-cov" ,python-pytest-cov))) (home-page "https://upsetplot.readthedocs.io") (synopsis "Draw UpSet plots with Pandas and Matplotlib") (description "This is a Python implementation of UpSet plots by Lex et al. UpSet plots are used to visualize set overlaps; like Venn diagrams but more readable.") (license license:bsd-3)))