All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python3-starlette: new package
@ 2021-03-29  0:21 Ben Gampe
  2021-03-29  0:21 ` [meta-python][PATCH 2/3] python3-pydantic: " Ben Gampe
  2021-03-29  0:21 ` [meta-python][PATCH 3/3] python3-fastapi: " Ben Gampe
  0 siblings, 2 replies; 3+ messages in thread
From: Ben Gampe @ 2021-03-29  0:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ben Gampe

Add recipe for python3-starlette: the little ASGI library that
shines
---
 .../recipes-devtools/python/python3-starlette_0.13.6.bb   | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-starlette_0.13.6.bb

diff --git a/meta-python/recipes-devtools/python/python3-starlette_0.13.6.bb b/meta-python/recipes-devtools/python/python3-starlette_0.13.6.bb
new file mode 100644
index 000000000..2e4b01b74
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-starlette_0.13.6.bb
@@ -0,0 +1,8 @@
+SUMMARY = "The little ASGI library that shines"
+HOMEPAGE = "https://www.starlette.io/"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=11e8c8dbfd5fa373c703de492140ff7a"
+
+inherit pypi setuptools3
+
+SRC_URI[sha256sum] = "ebe8ee08d9be96a3c9f31b2cb2a24dbdf845247b745664bd8a3f9bd0c977fdbc"
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-python][PATCH 2/3] python3-pydantic: new package
  2021-03-29  0:21 [meta-python][PATCH 1/3] python3-starlette: new package Ben Gampe
@ 2021-03-29  0:21 ` Ben Gampe
  2021-03-29  0:21 ` [meta-python][PATCH 3/3] python3-fastapi: " Ben Gampe
  1 sibling, 0 replies; 3+ messages in thread
From: Ben Gampe @ 2021-03-29  0:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ben Gampe

Add recipe for python3-pydantic: data validation and settings
management using python 3.6 type hinting
---
 .../python/python3-pydantic_1.7.3.bb                | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-pydantic_1.7.3.bb

diff --git a/meta-python/recipes-devtools/python/python3-pydantic_1.7.3.bb b/meta-python/recipes-devtools/python/python3-pydantic_1.7.3.bb
new file mode 100644
index 000000000..637561c8e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pydantic_1.7.3.bb
@@ -0,0 +1,13 @@
+SUMMARY = "Data validation and settings management using python 3.6 type hinting"
+HOMEPAGE = "https://github.com/samuelcolvin/pydantic"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=215ca7f54cdc98f95ee96c7511d64158"
+
+RDEPENDS_${PN} += "\
+    python3-image \
+    python3-typing \
+"
+
+inherit pypi setuptools3
+
+SRC_URI[sha256sum] = "213125b7e9e64713d16d988d10997dabc6a1f73f3991e1ff8e35ebb1409c7dc9"
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-python][PATCH 3/3] python3-fastapi: new package
  2021-03-29  0:21 [meta-python][PATCH 1/3] python3-starlette: new package Ben Gampe
  2021-03-29  0:21 ` [meta-python][PATCH 2/3] python3-pydantic: " Ben Gampe
@ 2021-03-29  0:21 ` Ben Gampe
  1 sibling, 0 replies; 3+ messages in thread
From: Ben Gampe @ 2021-03-29  0:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ben Gampe

Add recipe for python3-fastapi: high performance, easy to learn,
fast to code, ready for production
---
 .../python/python3-fastapi_0.63.0.bb                | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-fastapi_0.63.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-fastapi_0.63.0.bb b/meta-python/recipes-devtools/python/python3-fastapi_0.63.0.bb
new file mode 100644
index 000000000..9644b2741
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-fastapi_0.63.0.bb
@@ -0,0 +1,13 @@
+SUMMARY = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
+HOMEPAGE = "https://fastapi.tiangolo.com/"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=95792ff3fe8e11aa49ceb247e66e4810"
+
+RDEPENDS_${PN} += "\
+    python3-pydantic \
+    python3-starlette \
+"
+
+inherit pypi setuptools3
+
+SRC_URI[sha256sum] = "63c4592f5ef3edf30afa9a44fa7c6b7ccb20e0d3f68cd9eba07b44d552058dcb"
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-29  0:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-29  0:21 [meta-python][PATCH 1/3] python3-starlette: new package Ben Gampe
2021-03-29  0:21 ` [meta-python][PATCH 2/3] python3-pydantic: " Ben Gampe
2021-03-29  0:21 ` [meta-python][PATCH 3/3] python3-fastapi: " Ben Gampe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.