File: 20_remove_simplejson.patch

package info (click to toggle)
python-twitter 1.1%2Bgit20131227-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 884 kB
  • ctags: 1,148
  • sloc: python: 5,150; makefile: 187
file content (16 lines) | stat: -rw-r--r-- 672 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: remove simplejson from dependencies
 setup.py specifies simplejson for dependencies, but it's merged to Python 2.6 and
 later versions. This patch remove that dependency.
Last-Update: 2013-06-20

--- python-twitter-1.0.orig/setup.py
+++ python-twitter-1.0/setup.py
@@ -35,7 +35,7 @@ METADATA = dict(
 
 # Extra package metadata to be used only if setuptools is installed
 SETUPTOOLS_METADATA = dict(
-  install_requires = ['setuptools', 'simplejson', 'requests', 'requests_oauthlib'],
+  install_requires = ['setuptools', 'requests', 'requests_oauthlib'],
   include_package_data = True,
   classifiers = [
     'Development Status :: 5 - Production/Stable',