python3Packages.pyheif: init at 0.7.1

This commit is contained in:
Dan Callahan 2022-12-21 22:29:18 +00:00
parent b8a35e8f8b
commit f01831ad50
No known key found for this signature in database
GPG key ID: 8D6DD713E9EBA7FD
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, cffi
, libheif
}:
buildPythonPackage rec {
pname = "pyheif";
version = "0.7.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-hqXFF0N51xRrXtGmiJL69yaKE1+39QOaARv7em6QMgA=";
};
propagatedBuildInputs = [ cffi libheif ];
meta = with lib; {
homepage = "https://github.com/carsales/pyheif";
description = "Python interface to libheif library";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}

View file

@ -7995,6 +7995,8 @@ self: super: with self; {
pyhs100 = callPackage ../development/python-modules/pyhs100 { };
pyheif = callPackage ../development/python-modules/pyheif { };
pyi2cflash = callPackage ../development/python-modules/pyi2cflash { };
pyialarm = callPackage ../development/python-modules/pyialarm { };