python3Packages.timg: init at 1.6.1
Co-authored-by: renesat <self@renesat.me>
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user