diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-13 20:23:58 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-14 13:15:27 +0100 |
| commit | a049790ba19c3fca19f4b100afb300ab83b800b8 (patch) | |
| tree | 53f6e485b477d70cc318cc24e2568ec13eb9ca1a /gnu/packages/python-web.scm | |
| parent | 540be0149f82478fb1ade977ec1d84108f86b0b5 (diff) | |
gnu: python-livereload: Update to 2.7.1.
* gnu/packages/python-web.scm (python-livereload): Update to 2.7.1.
[source]: Swtitch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-django, python-setuptools, python-wheel.
Change-Id: I045ce60e08553656ac941f55b3f235468c2612de
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 94dbad6abb3..4f6a237ae07 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -8375,17 +8375,19 @@ association.") (define-public python-livereload (package (name "python-livereload") - (version "2.6.3") + (version "2.7.1") (source (origin - (method url-fetch) - (uri (pypi-uri "livereload" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/lepture/python-livereload") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0scqjnhg3ap81v36ghp0pik774dnfdkwqsx5j1jfbzarbs32yvvp")))) - (build-system python-build-system) - (propagated-inputs - (list python-six python-tornado)) + (base32 "19wkdd1grw6mcd4qi8iaw4jdr207h3m24951vgy69j7g904lynjq")))) + (build-system pyproject-build-system) + (native-inputs (list python-django python-setuptools python-wheel)) + (propagated-inputs (list python-tornado)) (home-page "https://github.com/lepture/python-livereload") (synopsis "Python LiveReload") (description |
