guix-commits
[Top][All Lists]
Advanced

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

05/36: gnu: Add python-webassets.


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

roptat pushed a commit to branch master
in repository guix.

commit 709a5a9365ac6115d9f8ddd29502f78f70649497
Author: Julien Lepiller <address@hidden>
Date:   Sat Apr 22 13:19:25 2017 +0200

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index a256091..6ee3163 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14216,3 +14216,27 @@ make common patterns shorter and easier.")
 
 (define-public python2-utils
   (package-with-python2 python-utils))
+
+(define-public python-webassets
+  (package
+    (name "python-webassets")
+    (version "0.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "webassets" version))
+       (sha256
+        (base32
+         "1nrqkpb7z46h2b77xafxihqv3322cwqv6293ngaky4j3ff4cing7"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-jinja2" ,python-jinja2)
+       ("python-mock" ,python-mock)
+       ("python-nose" ,python-nose)
+       ("python-pytest" ,python-pytest)))
+    (home-page "https://github.com/miracle2k/webassets";)
+    (synopsis "Media asset management")
+    (description "Merges, minifies and compresses Javascript and CSS files,
+supporting a variety of different filters, including YUI, jsmin, jspacker or
+CSS tidy.  Also supports URL rewriting in CSS files.")
+    (license license:bsd-2)))



reply via email to

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