mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: jc: Update to 1.23.2.
* gnu/packages/admin.scm (jc): Update to 1.23.2. [build-system]: Change to PYPROJECT-BUILD-SYSTEM. [native-inputs]: Add python-pytest. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
60b71b0db4
commit
201df17a60
1 changed files with 5 additions and 3 deletions
|
@ -85,6 +85,7 @@ (define-module (gnu packages admin)
|
||||||
#:use-module (guix build-system meson)
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
#:use-module (guix build-system pyproject)
|
||||||
#:use-module (guix build-system qt)
|
#:use-module (guix build-system qt)
|
||||||
#:use-module (guix build-system ruby)
|
#:use-module (guix build-system ruby)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
|
@ -4822,7 +4823,7 @@ (define-public pam-mount
|
||||||
(define-public jc
|
(define-public jc
|
||||||
(package
|
(package
|
||||||
(name "jc")
|
(name "jc")
|
||||||
(version "1.19.0")
|
(version "1.23.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
;; The PyPI tarball lacks the test suite.
|
;; The PyPI tarball lacks the test suite.
|
||||||
|
@ -4832,8 +4833,8 @@ (define-public jc
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "021zk0y8kb6v3qf3hwfg8qjzzmrca039nz3fjywiy2njmbhr8hyi"))))
|
(base32 "17g2q0h3jwzfm80ldl8inpyh5y0qzzmgvyg10gkk1rp8i34wfgly"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:phases
|
(list #:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
|
@ -4842,6 +4843,7 @@ (define-public jc
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* (find-files "tests" "^test.*\\.py$")
|
(substitute* (find-files "tests" "^test.*\\.py$")
|
||||||
(("America/Los_Angeles") "PST8PDT")))))))
|
(("America/Los_Angeles") "PST8PDT")))))))
|
||||||
|
(native-inputs (list python-pytest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-pygments python-ruamel.yaml python-xmltodict))
|
(list python-pygments python-ruamel.yaml python-xmltodict))
|
||||||
(home-page "https://github.com/kellyjonbrazil/jc")
|
(home-page "https://github.com/kellyjonbrazil/jc")
|
||||||
|
|
Loading…
Reference in a new issue