python3Packages.timg: init at 1.6.1

Co-authored-by: renesat <self@renesat.me>
This commit is contained in:
euxane
2025-09-06 02:35:02 +02:00
co-authored by renesat
parent eb8a4b0917
commit 1fe43afee2
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
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
View File
@@ -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 { };