blob: fe114a76ad77911abee8e2e4d475935f77545337 (
about) (
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,
fetchFromGitHub,
hatchling,
pillow,
}:
buildPythonPackage rec {
pname = "python-sixel";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "lubosz";
repo = "python-sixel";
tag = version;
hash = "sha256-ALNdwuZIMS2oWO42LpjgIpAxcQh4Gk35nCwenINLQ64=";
};
build-system = [
hatchling
];
dependencies = [
pillow
];
pythonImportsCheck = [
"sixel"
];
meta = {
description = "Display images in the terminal";
homepage = "https://github.com/lubosz/python-sixel";
changelog = "https://github.com/lubosz/python-sixel/releases/tag/${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ atemu ];
};
}
|