mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-cssmin.
* gnu/packages/python.scm (python-cssmin, python2-cssmin): New variables.
This commit is contained in:
parent
eed206cb8a
commit
03ded2fd3b
1 changed files with 20 additions and 0 deletions
|
@ -14262,3 +14262,23 @@ (define-public python-sphinx-me
|
|||
|
||||
(define-public python2-sphinx-me
|
||||
(package-with-python2 python-sphinx-me))
|
||||
|
||||
(define-public python-cssmin
|
||||
(package
|
||||
(name "python-cssmin")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "cssmin" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dk723nfm2yf8cp4pj785giqlwv42l0kj8rk40kczvq1hk6g04p0"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/zacharyvoase/cssmin")
|
||||
(synopsis "Python port of the YUI CSS Compressor")
|
||||
(description "Python port of the YUI CSS Compressor.")
|
||||
(license (list license:expat license:bsd-3))))
|
||||
|
||||
(define-public python2-cssmin
|
||||
(package-with-python2 python-cssmin))
|
||||
|
|
Loading…
Reference in a new issue