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