mirror of
https://github.com/SqrtMinusOne/channel-q.git
synced 2025-12-10 11:43:03 +03:00
feat(tmuxp): update
This commit is contained in:
parent
0531901c54
commit
28adeeb22e
1 changed files with 27 additions and 67 deletions
64
tmuxp.scm
64
tmuxp.scm
|
|
@ -9,80 +9,40 @@
|
||||||
#:use-module (gnu packages tmux)
|
#:use-module (gnu packages tmux)
|
||||||
#:use-module (gnu packages python-xyz))
|
#:use-module (gnu packages python-xyz))
|
||||||
|
|
||||||
(define-public python-libtmux-0.10
|
(define-public python-libtmux
|
||||||
(package
|
(package
|
||||||
(name "python-libtmux")
|
(name "python-libtmux")
|
||||||
(version "0.10.1")
|
(version "0.18.2")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "libtmux" version))
|
(uri (pypi-uri "libtmux" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qbbna7fkfvazhg3pr91rakkpj51cfa42kkh72aqkfhnjr4q3g68"))))
|
"1c86d25gdv1h3gw2g59bi884nqcs7i7h2rjanvpfpznccrbj9a31"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f))
|
'(#:tests? #f))
|
||||||
(home-page
|
(home-page "http://github.com/tmux-python/libtmux/")
|
||||||
"https://github.com/tmux-python/libtmux")
|
(synopsis "Typed scripting library / ORM / API wrapper for tmux")
|
||||||
(synopsis "scripting library / orm for tmux")
|
(description "Typed scripting library / ORM / API wrapper for tmux")
|
||||||
(description "scripting library / orm for tmux")
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-pyyaml-5.4.1
|
|
||||||
(package
|
|
||||||
(inherit python-pyyaml)
|
|
||||||
(version "5.4.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "PyYAML" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0pm440pmpvgv5rbbnm8hk4qga5a292kvlm1bh3x2nwr8pb5p8xv0"))))))
|
|
||||||
|
|
||||||
(define-public python-kaptan
|
|
||||||
(package
|
|
||||||
(name "python-kaptan")
|
|
||||||
(version "0.5.12")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "kaptan" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1lix7hafsqdpdmiyihykymb1x9bp2s02ik0smzjzq8hlfdb1zg8s"))))
|
|
||||||
(build-system python-build-system)
|
|
||||||
(propagated-inputs
|
|
||||||
`(("python-pyyaml" ,python-pyyaml-5.4.1)))
|
|
||||||
(arguments
|
|
||||||
'(#:tests? #f))
|
|
||||||
(home-page "https://github.com/emre/kaptan")
|
|
||||||
(synopsis "Configuration manager")
|
|
||||||
(description "Configuration manager")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public python-tmuxp
|
(define-public python-tmuxp
|
||||||
(package
|
(package
|
||||||
(name "python-tmuxp")
|
(name "python-tmuxp")
|
||||||
(version "1.9.2")
|
(version "1.24.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "tmuxp" version))
|
(uri (pypi-uri "tmuxp" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0hy21qa80namd2s6zqhf1wkn7f7dpp59sbr32726nl5vi9n566fx"))))
|
"09gpzizjjkkh9nhyzc2bfqsybbiy93mj2dkf2nagk1g1lfj4c2qr"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f))
|
'(#:tests? #f))
|
||||||
(propagated-inputs
|
(propagated-inputs (list python-colorama python-libtmux python-pyyaml))
|
||||||
`(("python-click" ,python-click)
|
(home-page "http://github.com/tmux-python/tmuxp/")
|
||||||
("python-colorama" ,python-colorama)
|
|
||||||
("python-kaptan" ,python-kaptan)
|
|
||||||
("python-libtmux" ,python-libtmux-0.10)))
|
|
||||||
(home-page
|
|
||||||
"https://github.com/tmux-python/tmuxp")
|
|
||||||
(synopsis "tmux session manager")
|
(synopsis "tmux session manager")
|
||||||
(description "tmux session manager")
|
(description "tmux session manager")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue