gnu: Add python-csscompressor.

* gnu/packages/python-xyz.scm (python-csscompressor): New variable.
This commit is contained in:
Efraim Flashner 2020-07-21 12:11:50 +03:00
parent 88b2c1aae2
commit 8ee76f611a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -13545,6 +13545,32 @@ network.")
(define-public python2-argcomplete
(package-with-python2 python-argcomplete))
(define-public python-csscompressor
(package
(name "python-csscompressor")
(version "0.9.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "csscompressor" version))
(sha256
(base32
"018ssffvlpnc1salmnpyl52c11glzzwj4k9f757hl4pkpjnjp8mg"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "py.test"))))))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/sprymix/csscompressor")
(synopsis "Python port of YUI CSS Compressor")
(description
"This package provides a python port of YUI CSS Compressor.")
(license license:bsd-3)))
(define-public python-rcssmin
(package
(name "python-rcssmin")