gnu: Add python-livereload.
* gnu/packages/python-web.scm (python-livereload): New variable.
This commit is contained in:
parent
d08782d16c
commit
d0e0b865e1
1 changed files with 23 additions and 0 deletions
|
@ -3627,3 +3627,26 @@ (define-public python-port-for
|
|||
management. It can find an unused TCP localhost port and remember the
|
||||
association.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-livereload
|
||||
(package
|
||||
(name "python-livereload")
|
||||
(version "2.6.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "livereload" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0rhggz185bxc3zjnfpmhcvibyzi86i624za1lfh7x7ajsxw4y9c9"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-six" ,python-six)
|
||||
("python-tornado" ,python-tornado)))
|
||||
(home-page "https://github.com/lepture/python-livereload")
|
||||
(synopsis "Python LiveReload")
|
||||
(description
|
||||
"Python LiveReload provides a command line utility, @command{livereload},
|
||||
for starting a web server in a directory. It can trigger arbitrary commands
|
||||
and serve updated contents upon changes to the directory.")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in a new issue