python312Packages.heif-image-plugin: init at 0.6.2
This commit is contained in:
parent
a8cf52487b
commit
6a6cbb2850
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
cffi,
|
||||||
|
piexif,
|
||||||
|
pillow,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "heif-image-plugin";
|
||||||
|
version = "0.6.2";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "uploadcare";
|
||||||
|
repo = "heif-image-plugin";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-SlnnlBscNelNH0XkOenq3nolyqzRMK10SzVii61Moi4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
cffi
|
||||||
|
piexif
|
||||||
|
pillow
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Simple HEIF/HEIC images plugin for Pillow base on pyhief library";
|
||||||
|
homepage = "https://github.com/uploadcare/heif-image-plugin";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ ratcornu ];
|
||||||
|
};
|
||||||
|
}
|
@ -6376,6 +6376,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
hebg = callPackage ../development/python-modules/hebg { };
|
hebg = callPackage ../development/python-modules/hebg { };
|
||||||
|
|
||||||
|
heif-image-plugin = callPackage ../development/python-modules/heif-image-plugin { };
|
||||||
|
|
||||||
help2man = callPackage ../development/python-modules/help2man { };
|
help2man = callPackage ../development/python-modules/help2man { };
|
||||||
|
|
||||||
helpdev = callPackage ../development/python-modules/helpdev { };
|
helpdev = callPackage ../development/python-modules/helpdev { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user