gnu: Add python-cssmin.

* gnu/packages/python.scm (python-cssmin, python2-cssmin): New variables.
This commit is contained in:
Julien Lepiller 2017-04-22 13:27:33 +02:00
parent eed206cb8a
commit 03ded2fd3b
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -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))