mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-css-html-js-minify: Update to 2.5.5-0.8f72452.
* gnu/packages/python-web.scm (python-css-html-js-minify): Update to 2.5.5-0.8f72452. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:phases>: Add phase 'relax-requirements. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I54bbaee60b8f7291f8bac14edf2ac83c23149efb Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
ea571d67f4
commit
11902d484c
1 changed files with 32 additions and 22 deletions
|
@ -1866,28 +1866,38 @@ routes using HTTP Digest Authentication.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public python-css-html-js-minify
|
(define-public python-css-html-js-minify
|
||||||
(package
|
(let ((commit "8f72452960e41bc5476e50d96481f633eff72750")
|
||||||
(name "python-css-html-js-minify")
|
(revision "0"))
|
||||||
(version "2.5.5")
|
(package
|
||||||
(source (origin
|
(name "python-css-html-js-minify")
|
||||||
(method url-fetch)
|
(version (git-version "2.5.5" revision commit))
|
||||||
(uri (pypi-uri "css-html-js-minify" version ".zip"))
|
(source
|
||||||
(sha256
|
(origin
|
||||||
(base32
|
(method git-fetch)
|
||||||
"0v3l2dqdk2y4r6ax259gs4ij1zzm9yxg6491s6254vs9w3vi37sa"))))
|
(uri (git-reference
|
||||||
(build-system python-build-system)
|
(url "https://github.com/juancarlospaco/css-html-js-minify")
|
||||||
;; XXX: The git repository has no tags, and the PyPI releases do not
|
(commit commit)))
|
||||||
;; contain tests.
|
(file-name (git-file-name name version))
|
||||||
(arguments '(#:tests? #f))
|
(sha256
|
||||||
(native-inputs (list unzip))
|
(base32 "1lkx03720zk6q16w3d9r3l5kryikd1cmzwrcjzsjxwrq4zfh6vdf"))))
|
||||||
(home-page "https://github.com/juancarlospaco/css-html-js-minify")
|
(build-system pyproject-build-system)
|
||||||
(synopsis "CSS/HTML/JS minifier")
|
(arguments
|
||||||
(description
|
(list
|
||||||
"This package provides a single-file minifier for CSS, HTML, and JavaScript.")
|
#:phases
|
||||||
;; XXX: The README just says "GNU GPL and GNU LGPL and MIT". From
|
#~(modify-phases %standard-phases
|
||||||
;; <https://github.com/juancarlospaco/css-html-js-minify/issues/9> it
|
(add-after 'unpack 'relax-requirements
|
||||||
;; looks like the user can choose a license.
|
(lambda _
|
||||||
(license (list license:gpl3+ license:lgpl3+ license:expat))))
|
(substitute* "setup.cfg"
|
||||||
|
(("^tests_require.*") "")))))))
|
||||||
|
(native-inputs (list python-setuptools python-wheel unzip))
|
||||||
|
(home-page "https://github.com/juancarlospaco/css-html-js-minify")
|
||||||
|
(synopsis "CSS/HTML/JS minifier")
|
||||||
|
(description
|
||||||
|
"This package provides a single-file minifier for CSS, HTML, and JavaScript.")
|
||||||
|
;; XXX: The README just says "GNU GPL and GNU LGPL and MIT". From
|
||||||
|
;; <https://github.com/juancarlospaco/css-html-js-minify/issues/9> it
|
||||||
|
;; looks like the user can choose a license.
|
||||||
|
(license (list license:gpl3+ license:lgpl3+ license:expat)))))
|
||||||
|
|
||||||
(define-public python-aws-sam-translator
|
(define-public python-aws-sam-translator
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue