blob: 7a972ce0618f70f465333919025175f52230e4f8 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
}:
buildPythonPackage rec {
pname = "sixelcrop";
version = "0.1.9";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1sBaxPvW4gH3lK3tEjAPtCdXMXLAVEof0lpIpmpbyG8=";
};
build-system = [
hatchling
];
pythonImportsCheck = [
"sixelcrop"
];
meta = {
description = "Crop sixel images in sixel-space!";
homepage = "https://github.com/joouha/sixelcrop";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
euxane
renesat
];
};
}
|