1{
2 lib,
3 buildPythonPackage,
4 distutils,
5 fetchPypi,
6 setuptools,
7}:
8buildPythonPackage rec {
9 pname = "lottie";
10 version = "0.7.2";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-hTBKwVLNBCyf6YpSe10TajHG/iqs2FnOHFgYm7lG0Sc=";
16 };
17
18 build-system = [ setuptools ];
19
20 dependencies = [ distutils ];
21
22 pythonImportsCheck = [ "lottie" ];
23
24 meta = with lib; {
25 description = "Framework to work with lottie files and telegram animated stickers (tgs)";
26 homepage = "https://gitlab.com/mattbas/python-lottie/";
27 license = licenses.agpl3Plus;
28 maintainers = with maintainers; [ Scrumplex ];
29 };
30}