Files
nixpkgs/pkgs/development/python-modules/timg/default.nix
euxane 1fe43afee2 python3Packages.timg: init at 1.6.1
Co-authored-by: renesat <self@renesat.me>
2025-09-06 02:35:02 +02:00

41 lines
627 B
Nix

{
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
];
};
}