mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add python-rcssmin.
* gnu/packages/python-xyz.scm (python-rcssmin): New variable.
This commit is contained in:
parent
41eb9da388
commit
bdcb84578d
1 changed files with 24 additions and 0 deletions
|
@ -13545,6 +13545,30 @@ (define-public python-argcomplete
|
|||
(define-public python2-argcomplete
|
||||
(package-with-python2 python-argcomplete))
|
||||
|
||||
(define-public python-rcssmin
|
||||
(package
|
||||
(name "python-rcssmin")
|
||||
(version "1.0.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "rcssmin" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0w42l4dhxghcz7pj3q7hkxp015mvb8z2cq9sfxbl31npsfavd1ya"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "python" "run_tests.py" "tests"))))))
|
||||
(home-page "http://opensource.perlig.de/rcssmin/")
|
||||
(synopsis "CSS Minifier")
|
||||
(description "The minifier is based on the semantics of the YUI compressor,
|
||||
which itself is based on the rule list by Isaac Schlueter.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-rjsmin
|
||||
(package
|
||||
(name "python-rjsmin")
|
||||
|
|
Loading…
Reference in a new issue