diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb new file mode 100644 index 0000000000..acd84efd21 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "A fast and thorough lazy object proxy" | ||
2 | HOMEPAGE = "https://python-lazy-object-proxy.readthedocs.io/" | ||
3 | LICENSE = "BSD-2-Clause" | ||
4 | SECTION = "devel/python" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f0cd92fd68aacee0503822c05a3ee6a2" | ||
6 | |||
7 | DEPENDS += "python3-setuptools-scm-native" | ||
8 | |||
9 | SRC_URI[sha256sum] = "1f5a462d92fd0cfb82f1fab28b51bfb209fabbe6aabf7f0d51472c0c124c0c61" | ||
10 | |||
11 | PYPI_PACKAGE = "lazy_object_proxy" | ||
12 | |||
13 | inherit pypi python_setuptools_build_meta | ||
14 | |||
15 | do_install:append() { | ||
16 | # contain moddate, makes is non-reproducible | ||
17 | rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/lazy_object_proxy/__pycache__/*.cpython-*.pyc | ||
18 | } | ||