python3Packages.lottie: init at 0.7.0

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2024-07-28 15:26:07 +02:00
parent 7c6692836e
commit a93cfa6bc0
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,30 @@
{
lib,
buildPythonPackage,
distutils,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "lottie";
version = "0.7.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-oyQvi6NwUfvddQPs0WggOgjkrybxe+LsygimSvHn08E=";
};
build-system = [ setuptools ];
dependencies = [ distutils ];
pythonImportsCheck = [ "lottie" ];
meta = with lib; {
description = "Framework to work with lottie files and telegram animated stickers (tgs)";
homepage = "https://gitlab.com/mattbas/python-lottie/";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ Scrumplex ];
};
}
+2
View File
@@ -7235,6 +7235,8 @@ self: super: with self; {
losant-rest = callPackage ../development/python-modules/losant-rest { };
lottie = callPackage ../development/python-modules/lottie { };
lpc-checksum = callPackage ../development/python-modules/lpc-checksum { };
lrcalc-python = callPackage ../development/python-modules/lrcalc-python { };