mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
31 lines
652 B
Nix
31 lines
652 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
distutils,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "lottie";
|
|
version = "0.7.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-If05yOaLsfBDvVxmnDxgxwqc3lkCjTW8YV3e+S9CU2o=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|