Commit 1fe43afe authored by euxane's avatar euxane
Browse files

python3Packages.timg: init at 1.6.1



Co-authored-by: default avatarrenesat <self@renesat.me>
parent eb8a4b09
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  pillow,
}:

buildPythonPackage rec {
  pname = "timg";
  version = "1.1.6";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-k42TmsNQIwD3ueParfXaD4jFuG/eWILXO0Op0Ci9S/0=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    pillow
  ];

  pythonImportsCheck = [
    "timg"
  ];

  meta = {
    description = "Display an image in terminal";
    homepage = "https://github.com/adzierzanowski/timg";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      euxane
      renesat
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -18260,6 +18260,8 @@ self: super: with self; {
  timezonefinder = callPackage ../development/python-modules/timezonefinder { };
  timg = callPackage ../development/python-modules/timg { };
  timing-asgi = callPackage ../development/python-modules/timing-asgi { };
  timm = callPackage ../development/python-modules/timm { };