Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 30 lines 652 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 distutils, 5 fetchPypi, 6 setuptools, 7}: 8buildPythonPackage rec { 9 pname = "lottie"; 10 version = "0.7.1"; 11 pyproject = true; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-If05yOaLsfBDvVxmnDxgxwqc3lkCjTW8YV3e+S9CU2o="; 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}