python311Packages.thumborPexif: remove

It is only compatible with Python 2, and not referenced by anything in-tree.
This commit is contained in:
Felix Buehler 2024-01-07 13:00:00 +01:00 committed by Martin Weinelt
parent be5b82b259
commit 255ec95023
3 changed files with 1 additions and 25 deletions

View File

@ -1,23 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "thumbor-pexif";
version = "0.14.1";
disabled = ! isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "96dcc03ea6066d9546baf54f6841f4048b0b24a291eed65d098b3348c8872d99";
};
meta = with lib; {
description = "Module to parse and edit the EXIF data tags in a JPEG image";
homepage = "http://www.benno.id.au/code/pexif/";
license = licenses.mit;
};
}

View File

@ -468,6 +468,7 @@ mapAliases ({
Theano = theano; # added 2023-02-19
TheanoWithCuda = theanoWithCuda; # added 2023-02-19
TheanoWithoutCuda = theanoWithoutCuda; # added 2023-02-19
thumborPexif = throw "thumborPexif has been removed, because it was unused."; # added 2024-01-07
torrent_parser = torrent-parser; # added 2023-11-04
transip = throw "transip has been removed because it is no longer maintained. TransIP SOAP V5 API was marked as deprecated"; # added 2023-02-27
tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19

View File

@ -14264,8 +14264,6 @@ self: super: with self; {
throttler = callPackage ../development/python-modules/throttler { };
thumborPexif = callPackage ../development/python-modules/thumborpexif { };
tkinter = callPackage ../development/python-modules/tkinter {
py = python.override { x11Support=true; };
};