mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: python-liblarch: Update to 3.2.0 and apply guix style.
* gnu/packages/gnome.scm (python-liblarch): Update to 3.2.0; apply guix style.
This commit is contained in:
parent
ed26f1cf43
commit
7cf6b7e21a
1 changed files with 19 additions and 24 deletions
|
@ -2721,32 +2721,27 @@ (define-public gsettings-desktop-schemas-next
|
||||||
(define-public python-liblarch
|
(define-public python-liblarch
|
||||||
(package
|
(package
|
||||||
(name "python-liblarch")
|
(name "python-liblarch")
|
||||||
(version "3.0.1")
|
(version "3.2.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method git-fetch)
|
(uri (git-reference
|
||||||
(uri (git-reference
|
(url "https://github.com/getting-things-gnome/liblarch")
|
||||||
(url "https://github.com/getting-things-gnome/liblarch")
|
(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
|
||||||
(base32 "0xv2mfvyzipbny3iz8vll77wsqxfwh28xj6bj1ff0l452waph45m"))))
|
"125rmrdbc84lapfh8c77zxnmwas20xdfamqmilhv1smkxn2q4sh3"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
(add-before 'check 'start-xserver
|
||||||
(add-before 'check 'start-xserver
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(system (format #f "~a/bin/Xvfb :1 &"
|
||||||
(system (format #f "~a/bin/Xvfb :1 &"
|
(assoc-ref inputs "xorg-server")))
|
||||||
(assoc-ref inputs "xorg-server")))
|
(setenv "DISPLAY" ":1"))))))
|
||||||
(setenv "DISPLAY" ":1")
|
(native-inputs (list xorg-server-for-tests))
|
||||||
#t)))))
|
(inputs (list gtk+))
|
||||||
(native-inputs
|
(propagated-inputs (list python-pygobject))
|
||||||
(list xorg-server-for-tests))
|
|
||||||
(inputs
|
|
||||||
(list gtk+))
|
|
||||||
(propagated-inputs
|
|
||||||
(list python-pygobject))
|
|
||||||
(home-page "https://wiki.gnome.org/Projects/liblarch")
|
(home-page "https://wiki.gnome.org/Projects/liblarch")
|
||||||
(synopsis "Library to easily handle complex data structures")
|
(synopsis "Library to easily handle complex data structures")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue