guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/36: gnu: Add python-cssmin.


From: julien lepiller
Subject: 08/36: gnu: Add python-cssmin.
Date: Thu, 11 May 2017 16:01:26 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 03ded2fd3be2b6fbff13df58643edf29601badf4
Author: Julien Lepiller <address@hidden>
Date:   Sat Apr 22 13:27:33 2017 +0200

    gnu: Add python-cssmin.
    
    * gnu/packages/python.scm (python-cssmin, python2-cssmin): New variables.
---
 gnu/packages/python.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b329d97..13eeefe 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14262,3 +14262,23 @@ use in your Sphinx docs.")
 
 (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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]