Merge pull request #330649 from Scrumplex/pkgs/python3/lottie/init
python3Packages.lottie: init at 0.7.0
This commit is contained in:
commit
13a43fed32
30
pkgs/development/python-modules/lottie/default.nix
Normal file
30
pkgs/development/python-modules/lottie/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -7242,6 +7242,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user