diff options
Diffstat (limited to 'package/python-six')
-rw-r--r-- | package/python-six/Config.in | 9 | ||||
-rw-r--r-- | package/python-six/python-six.hash | 2 | ||||
-rw-r--r-- | package/python-six/python-six.mk | 14 |
3 files changed, 25 insertions, 0 deletions
diff --git a/package/python-six/Config.in b/package/python-six/Config.in new file mode 100644 index 0000000000..0a8b69ace6 --- /dev/null +++ b/package/python-six/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_PYTHON_SIX + bool "python-six" + help + Six is a Python 2 and 3 compatibility library. It provides + utility functions for smoothing over the differences between + the Python versions with the goal of writing Python code that + is compatible on both Python versions. + + http://pythonhosted.org/six diff --git a/package/python-six/python-six.hash b/package/python-six/python-six.hash new file mode 100644 index 0000000000..6121a083ec --- /dev/null +++ b/package/python-six/python-six.hash @@ -0,0 +1,2 @@ +# Locally computed: +sha256 e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5 six-1.9.0.tar.gz diff --git a/package/python-six/python-six.mk b/package/python-six/python-six.mk new file mode 100644 index 0000000000..08fe5de60e --- /dev/null +++ b/package/python-six/python-six.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-six +# +################################################################################ + +PYTHON_SIX_VERSION = 1.9.0 +PYTHON_SIX_SOURCE = six-$(PYTHON_SIX_VERSION).tar.gz +PYTHON_SIX_SITE = https://pypi.python.org/packages/source/s/six/ +PYTHON_SIX_SETUP_TYPE = setuptools +PYTHON_SIX_LICENSE = MIT +PYTHON_SIX_LICENSE_FILES = LICENSE + +$(eval $(python-package)) |