add new python3 modules: fasteners, pyjwt.

This commit is contained in:
uglyside
2024-11-25 12:29:05 +03:00
parent 1fb118fbea
commit 856d9885bc
4 changed files with 118 additions and 0 deletions
@@ -0,0 +1,13 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import python3modules
def build():
python3modules.compile()
def install():
python3modules.install()
@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-fasteners</Name>
<Homepage>https://github.com/harlowja/fasteners</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>Apache2.0</License>
<PartOf>programming.language.python3</PartOf>
<Summary>A python package that provides useful locks.</Summary>
<Description>Cross-platform locks for threads and processes.</Description>
<Archive sha1sum="79516ab8ec401b85ad2be1b5180093ca24cacabb" type="targz">https://files.pythonhosted.org/packages/source/f/fasteners/fasteners-0.19.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-wheel</Dependency>
<Dependency>python3-build</Dependency>
<Dependency>python3-installer</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1"></Patch> -->
</Patches>
</Source>
<Package>
<Name>python3-fasteners</Name>
<RuntimeDependencies>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2024-11-25</Date>
<Version>0.19</Version>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>