blob: db8afa366d30cd1e35fe1866b59373138a089881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DESCRIPTION = "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6."
HOMEPAGE = "https://pypi.python.org/pypi/ordereddict"
SECTION = "devel/python"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7f0267460024072a9bbf135ee87a41b8"
SRCNAME = "ordereddict"
SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
SRC_URI[md5sum] = "a0ed854ee442051b249bfad0f638bbec"
SRC_URI[sha256sum] = "1c35b4ac206cef2d24816c89f89cf289dd3d38cf7c449bb3fab7bf6d43f01b1f"
S = "${WORKDIR}/${SRCNAME}-${PV}"
inherit setuptools
# DEPENDS_default: python-pip
DEPENDS += " \
python-pip \
"
# RDEPENDS_default:
RDEPENDS_${PN} += " \
python-pip \
"
|