python3Packages.pyheif: init at 0.7.1
This commit is contained in:
parent
b8a35e8f8b
commit
f01831ad50
2 changed files with 27 additions and 0 deletions
25
pkgs/development/python-modules/pyheif/default.nix
Normal file
25
pkgs/development/python-modules/pyheif/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue