lol

python3Packages.pyheif: init at 0.7.1

+27
+25
pkgs/development/python-modules/pyheif/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , cffi 5 + , libheif 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pyheif"; 10 + version = "0.7.1"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-hqXFF0N51xRrXtGmiJL69yaKE1+39QOaARv7em6QMgA="; 15 + }; 16 + 17 + propagatedBuildInputs = [ cffi libheif ]; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/carsales/pyheif"; 21 + description = "Python interface to libheif library"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ ]; 24 + }; 25 + }
+2
pkgs/top-level/python-packages.nix
··· 7995 7995 7996 7996 pyhs100 = callPackage ../development/python-modules/pyhs100 { }; 7997 7997 7998 + pyheif = callPackage ../development/python-modules/pyheif { }; 7999 + 7998 8000 pyi2cflash = callPackage ../development/python-modules/pyi2cflash { }; 7999 8001 8000 8002 pyialarm = callPackage ../development/python-modules/pyialarm { };