summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-devtools/python/python3-fastentrypoints_0.12.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-devtools/python/python3-fastentrypoints_0.12.bb b/recipes-devtools/python/python3-fastentrypoints_0.12.bb
new file mode 100644
index 00000000..7bd16515
--- /dev/null
+++ b/recipes-devtools/python/python3-fastentrypoints_0.12.bb
@@ -0,0 +1,18 @@
1SUMMARY = "Make entry_points specified in setup.py load more quickly"
2DESCRIPTION = "Using entry_points in your setup.py makes scripts that start \
3really slowly because it imports pkg_resources, which is a horrible \
4thing to do if you want your trivial script to execute more or less \
5instantly. fastentrypoints aims to fix that bypassing pkg_resources, \
6making scripts load a lot faster."
7HOMEPAGE = "https://github.com/ninjaaron/fast-entry_points"
8SECTION = "devel/python"
9
10LICENSE = "BSD-2-Clause"
11LIC_FILES_CHKSUM = "file://README.rst;md5=f212a0cb34eb678477972d2011fb365a"
12
13inherit pypi setuptools3
14
15SRC_URI[md5sum] = "390ad9a9229164a06156a5b1f0ef1b22"
16SRC_URI[sha256sum] = "ff284f1469bd65400599807d2c6284d5b251398e6e28811f5f77fd262292410b"
17
18BBCLASSEXTEND = "native nativesdk"