[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33185] [PATCH 2/7] gnu: Add python-slimit.
From: |
Christopher Baines |
Subject: |
[bug#33185] [PATCH 2/7] gnu: Add python-slimit. |
Date: |
Sun, 4 Nov 2018 10:44:50 +0000 |
* gnu/packages/python-web.scm (python-slimit, python2-slimit): New variables.
---
gnu/packages/python-web.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 3671454c2..26134e808 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1983,6 +1983,34 @@ transfers.")
`(("python2-futures" ,python2-futures)
,@(package-native-inputs base))))))
+(define-public python-slimit
+ (package
+ (name "python-slimit")
+ (version "0.8.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "slimit" version ".zip"))
+ (sha256
+ (base32
+ "02vj2x728rs1127q2nc27frrqra4fczivnb7gch6n5lzi7pxqczl"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("unzip" ,unzip)))
+ (propagated-inputs
+ `(("python-ply" ,python-ply)))
+ (home-page "https://slimit.readthedocs.io/")
+ (synopsis "JavaScript minifier, parser and lexer written in Python")
+ (description
+ "@code{SlimIt} is a JavaScript minifier written in Python. It compiles
+JavaScript into more compact code so that it downloads and runs faster.
+SlimIt also provides a library that includes a JavaScript parser, lexer,
+pretty printer and a tree visitor.")
+ (license license:expat)))
+
+(define-public python2-slimit
+ (package-with-python2 python-slimit))
+
(define-public python-flask-restful
(package
(name "python-flask-restful")
--
2.18.0
- [bug#33185] [PATCH 1/7] gnu: Add python-jsmin., Christopher Baines, 2018/11/04
- [bug#33185] [PATCH 4/7] gnu: Add python-django-jinja., Christopher Baines, 2018/11/04
- [bug#33185] [PATCH 5/7] gnu: Add python-django-debug-toolbar., Christopher Baines, 2018/11/04
- [bug#33185] [PATCH 2/7] gnu: Add python-slimit.,
Christopher Baines <=
- [bug#33185] [PATCH 6/7] gnu: Add patchwork., Christopher Baines, 2018/11/04
- [bug#33185] [PATCH 3/7] gnu: Add python-django-pipeline., Christopher Baines, 2018/11/04
- [bug#33185] [PATCH 7/7] services: Add patchwork., Christopher Baines, 2018/11/04