summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2015-07-10 15:49:07 -0500
committerLudovic Courtès <ludo@gnu.org>2015-07-19 23:17:52 +0200
commitf4de5b3bf116d965a41cdeebb5423cdd15168c2b (patch)
tree966dd9e2242e748eeb2df965ba74f02a73410483
parent093ae1be9bdec56709f546ec5ffed20d34957e8f (diff)
gnu: Add python-feedgenerator.
* gnu/packages/python.scm (python-feedgenerator, python2-feedgenerator): New variables. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/python.scm39
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e2eaa3176de..0788da0ff3e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8,6 +8,7 @@
8;;; Copyright © 2015 Omar Radwan <toxemicsquire4@gmail.com> 8;;; Copyright © 2015 Omar Radwan <toxemicsquire4@gmail.com>
9;;; Copyright © 2015 Pierre-Antoine Rault <par@rigelk.eu> 9;;; Copyright © 2015 Pierre-Antoine Rault <par@rigelk.eu>
10;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> 10;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
11;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
11;;; 12;;;
12;;; This file is part of GNU Guix. 13;;; This file is part of GNU Guix.
13;;; 14;;;
@@ -2067,6 +2068,44 @@ sources.")
2067(define-public python2-sphinx-rtd-theme 2068(define-public python2-sphinx-rtd-theme
2068 (package-with-python2 python-sphinx-rtd-theme)) 2069 (package-with-python2 python-sphinx-rtd-theme))
2069 2070
2071(define-public python-feedgenerator
2072 (package
2073 (name "python-feedgenerator")
2074 (version "20150710.97185b7")
2075 (source
2076 ;; Using the git checkout for now because license file not added till
2077 ;; https://github.com/dmdm/feedgenerator-py3k/commit/97185b7566c240c4bf5ed80db7d6c271204dab39
2078 (origin
2079 (method git-fetch)
2080 (uri (git-reference
2081 (url "https://github.com/dmdm/feedgenerator-py3k.git")
2082 (commit "97185b7566c240c4bf5ed80db7d6c271204dab39")))
2083 (sha256
2084 (base32
2085 "0dbd6apij5j1923ib905x0srgcyls4wlabqlwp4dzkwmksvnrr2a"))))
2086 (arguments
2087 `(;; With standard flags, the install phase attempts to create a zip'd
2088 ;; egg file, and fails with an error: 'ZIP does not support timestamps
2089 ;; before 1980'
2090 #:configure-flags '("--single-version-externally-managed"
2091 "--record=feedgenerator.txt")))
2092 (build-system python-build-system)
2093 (inputs
2094 `(("python-setuptools" ,python-setuptools)
2095 ("python-pytz" ,python-pytz)
2096 ("python-six" ,python-six)))
2097 (home-page
2098 "https://github.com/dmdm/feedgenerator-py3k.git")
2099 (synopsis
2100 "Standalone version of Django's Atom/RSS feed generator")
2101 (description
2102 "Feedgenerator-py3k is a standalone version of Django's feedgenerator,
2103which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.")
2104 (license bsd-3)))
2105
2106(define-public python2-feedgenerator
2107 (package-with-python2 python-feedgenerator))
2108
2070(define-public python-scikit-learn 2109(define-public python-scikit-learn
2071 (package 2110 (package
2072 (name "python-scikit-learn") 2111 (name "python-scikit-learn")