1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 hatchling,
6}:
7
8buildPythonPackage rec {
9 pname = "sixelcrop";
10 version = "0.1.9";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-1sBaxPvW4gH3lK3tEjAPtCdXMXLAVEof0lpIpmpbyG8=";
16 };
17
18 build-system = [
19 hatchling
20 ];
21
22 pythonImportsCheck = [
23 "sixelcrop"
24 ];
25
26 meta = {
27 description = "Crop sixel images in sixel-space!";
28 homepage = "https://github.com/joouha/sixelcrop";
29 license = lib.licenses.mit;
30 maintainers = with lib.maintainers; [
31 euxane
32 renesat
33 ];
34 };
35}