gnu: grip: Update to 4.6.1.
* gnu/packages/python-web.scm (grip): Update to 4.6.1. (arguments): Use a gexp. Signed-off-by: Christopher Baines <mail@cbaines.net>master
parent
09aeabb9d3
commit
9a2a77b6ad
|
@ -52,6 +52,7 @@
|
||||||
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
|
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
|
||||||
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
||||||
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
||||||
|
;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -5179,50 +5180,46 @@ interfaces, inferring which argument is the path, and which is the address.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public grip
|
(define-public grip
|
||||||
;; No release by upstream for quite some time, some bugs fixed since. See:
|
|
||||||
;; https://github.com/joeyespo/grip/issues/304
|
|
||||||
(let ((commit "27a4d6d87ea1d0ea7f7f120de55baabee3de73e3"))
|
|
||||||
(package
|
(package
|
||||||
(name "grip")
|
(name "grip")
|
||||||
(version (git-version "4.5.2" "1" commit))
|
(version "4.6.1")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/joeyespo/grip")
|
(url "https://github.com/joeyespo/grip")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kx5hgb3q19i4l18a4vqdq9af390xgpk88lp2ay75qi96k0dc68w"))))
|
"0vhimd99zw7s1fihwr6yfij6ywahv9gdrfcf5qljvzh75mvzcwh8"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs (list python-docopt
|
||||||
(list python-docopt
|
|
||||||
python-flask
|
python-flask
|
||||||
python-markdown
|
python-markdown
|
||||||
python-path-and-address
|
python-path-and-address
|
||||||
python-pygments
|
python-pygments
|
||||||
python-requests))
|
python-requests))
|
||||||
(native-inputs
|
(native-inputs (list python-pytest python-responses))
|
||||||
(list python-pytest python-responses))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list #:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
(add-installed-pythonpath inputs outputs)
|
(add-installed-pythonpath inputs outputs)
|
||||||
(setenv "PATH" (string-append
|
(setenv "PATH"
|
||||||
(getenv "PATH") ":"
|
(string-append (getenv "PATH") ":"
|
||||||
(assoc-ref %outputs "out") "/bin"))
|
#$output "/bin"))
|
||||||
(invoke "py.test" "-m" "not assumption"))))))
|
(invoke "py.test" "-m" "not assumption")))))))
|
||||||
(home-page "https://github.com/joeyespo/grip")
|
(home-page "https://github.com/joeyespo/grip")
|
||||||
(synopsis "Preview Markdown files using the GitHub API")
|
(synopsis "Preview Markdown files using the GitHub API")
|
||||||
(description "Grip is a command-line server application written in Python
|
(description
|
||||||
|
"Grip is a command-line server application written in Python
|
||||||
that uses the GitHub Markdown API to render a local Markdown file. The styles
|
that uses the GitHub Markdown API to render a local Markdown file. The styles
|
||||||
and rendering come directly from GitHub, so you'll know exactly how it will
|
and rendering come directly from GitHub, so you'll know exactly how it will
|
||||||
appear. Changes you make to the file will be instantly reflected in the browser
|
appear. Changes you make to the file will be instantly reflected in the browser
|
||||||
without requiring a page refresh.")
|
without requiring a page refresh.")
|
||||||
(license license:expat))))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-port-for
|
(define-public python-port-for
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue