Commit 255ec950 authored by Felix Buehler's avatar Felix Buehler Committed by Martin Weinelt
Browse files

python311Packages.thumborPexif: remove

It is only compatible with Python 2, and not referenced by anything in-tree.
parent be5b82b2
Loading
Loading
Loading
Loading
+0 −23
Original line number Diff line number Diff line
{ 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;
  };

}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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; };
  };