feat: add package packaging-py

Signed-off-by: sisungo <[email protected]>
This commit is contained in:
2026-08-15 20:45:06 +08:00
parent ed596468e4
commit ade0faf6a0
+24
View File
@@ -0,0 +1,24 @@
from lib.make import *
from lib import python
python.version("26.3")
description("Core utilities for Python packages")
maintainer("sisungo <[email protected]>")
source_url("https://files.pythonhosted.org/packages/7d/fa/3944b40b07da9ce895c0e6303a5ab7d53da063554f534556b134a54d6093/packaging-26.3.tar.gz")
python.builddep("python")
python.builddep("build.py")
python.builddep("installer.py")
def build():
python.build()
python.install()
on_build(build)
package("packaging.py")
python.dep("python")
python.use_auto_pack()