blob: 7e8a3c208846a8e31230bf61338edf9e98dfcd17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
];
};
}
|