mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 12:17:10 -05:00
gnu: Add python-qdarkstyle.
* gnu/packages/python-xyz.scm (python-qdarkstyle): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
ef5df1588c
commit
51ad28ae71
1 changed files with 27 additions and 0 deletions
|
@ -23273,3 +23273,30 @@ (define-public python-helpdev
|
|||
"Helpdev is a library to easily extract information about the Python
|
||||
environment.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-qdarkstyle
|
||||
(package
|
||||
(name "python-qdarkstyle")
|
||||
(version "2.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "QDarkStyle" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0883vzg35fzpyl1aiijzpfcdfvpq5vi325w0m7xkx7nxplh02fym"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(;; Fails unable to detect valid Qt bindings even when
|
||||
;; added as native-inputs.
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
`(("python-helpdev" ,python-helpdev)
|
||||
("python-qtpy" ,python-qtpy)))
|
||||
(home-page
|
||||
"https://github.com/ColinDuquesnoy/QDarkStyleSheet")
|
||||
(synopsis
|
||||
"Complete dark stylesheet for Python and Qt applications")
|
||||
(description "QDarkStyle is the most complete dark stylesheet for Python and
|
||||
Qt applications.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue