Merge pull request #185411 from anthonyroussel/pyvips-2.2.1

This commit is contained in:
Sandro 2022-08-06 19:48:43 +02:00 committed by GitHub
commit bec32a62e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View File

@ -923,6 +923,15 @@
name = "Anselm Schüler";
matrix = "@schuelermine:matrix.org";
};
anthonyroussel = {
email = "anthony@roussel.dev";
github = "anthonyroussel";
githubId = 220084;
name = "Anthony Roussel";
keys = [{
fingerprint = "472D 368A F107 F443 F3A5 C712 9DC4 987B 1A55 E75E";
}];
};
antoinerg = {
email = "roygobeil.antoine@gmail.com";
github = "antoinerg";

View File

@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "pyvips";
version = "2.2.0";
version = "2.2.1";
src = fetchFromGitHub {
owner = "libvips";
repo = "pyvips";
rev = "v${version}";
sha256 = "sha256-qMVoVzqXALhPWVKLzu+VqihHPN7J+pMhKnXdb+ow0zw=";
sha256 = "sha256-9S7h3bkm+QP78cpemYS7l3c8t+wXsJ5MUAP2T50R/Mc=";
};
nativeBuildInputs = [ pkgconfig pkg-config ];
@ -42,6 +42,6 @@ buildPythonPackage rec {
description = "A python wrapper for libvips";
homepage = "https://github.com/libvips/pyvips";
license = licenses.mit;
maintainers = with maintainers; [ ccellado ];
maintainers = with maintainers; [ ccellado anthonyroussel ];
};
}