gnu: python-feedgenerator: Update to 1.8.
* gnu/packages/python.scm (python-feedgenerator): Update to 1.8. [arguments]: Remove configure flags. [inputs]: Move python-setuptools, python-pytz, python-six ... [native-inputs]: ... to here. [home-page]: Update project's home-page.
This commit is contained in:
parent
d9f2dece1f
commit
f0412aa2bd
|
@ -2698,31 +2698,20 @@ sources.")
|
||||||
(define-public python-feedgenerator
|
(define-public python-feedgenerator
|
||||||
(package
|
(package
|
||||||
(name "python-feedgenerator")
|
(name "python-feedgenerator")
|
||||||
(version "20150710.97185b7")
|
(version "1.8")
|
||||||
(source
|
(source
|
||||||
;; Using the git checkout for now because license file not added till
|
|
||||||
;; https://github.com/dmdm/feedgenerator-py3k/commit/97185b7566c240c4bf5ed80db7d6c271204dab39
|
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (pypi-uri "feedgenerator" version))
|
||||||
(url "https://github.com/dmdm/feedgenerator-py3k.git")
|
|
||||||
(commit "97185b7566c240c4bf5ed80db7d6c271204dab39")))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0dbd6apij5j1923ib905x0srgcyls4wlabqlwp4dzkwmksvnrr2a"))))
|
"0mkimp1fpdan4p3882vzcws4l594k71ich4g0wq97jbra7p602n0"))))
|
||||||
(arguments
|
|
||||||
`(;; With standard flags, the install phase attempts to create a zip'd
|
|
||||||
;; egg file, and fails with an error: 'ZIP does not support timestamps
|
|
||||||
;; before 1980'
|
|
||||||
#:configure-flags '("--single-version-externally-managed"
|
|
||||||
"--record=feedgenerator.txt")))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(native-inputs
|
||||||
`(("python-setuptools" ,python-setuptools)
|
`(("python-setuptools" ,python-setuptools)
|
||||||
("python-pytz" ,python-pytz)
|
("python-pytz" ,python-pytz)
|
||||||
("python-six" ,python-six)))
|
("python-six" ,python-six)))
|
||||||
(home-page
|
(home-page "https://github.com/getpelican/feedgenerator")
|
||||||
"https://github.com/dmdm/feedgenerator-py3k.git")
|
|
||||||
(synopsis
|
(synopsis
|
||||||
"Standalone version of Django's Atom/RSS feed generator")
|
"Standalone version of Django's Atom/RSS feed generator")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue