about summary refs log tree commit diff
path: root/pkgs/applications/graphics/textual-paint/default.nix
blob: c11a5cd632d75565b2440d24c0bae19c9ab45a11 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{ lib
, python3
, fetchFromGitHub
, fetchPypi
, fetchpatch
}:

let
  python = python3.override {
    packageOverrides = _: super: {
      pillow = super.pillow.overridePythonAttrs rec {
        version = "9.5.0";
        format = "pyproject";

        src = fetchPypi {
          pname = "Pillow";
          inherit version;
          hash = "sha256-v1SEedM2cm16Ds6252fhefveN4M65CeUYCYxoHDWMPE=";
        };

        patches = [
          # fix type handling for include and lib directories
          (fetchpatch {
            url = "https://github.com/python-pillow/Pillow/commit/0ec0a89ead648793812e11739e2a5d70738c6be5.patch";
            hash = "sha256-m5R5fLflnbJXbRxFlTjT2X3nKdC05tippMoJUDsJmy0=";
          })
        ];
      };

      textual = super.textual.overridePythonAttrs rec {
        version = "0.27.0";

        src = fetchFromGitHub {
          owner = "Textualize";
          repo = "textual";
          rev = "v${version}";
          hash = "sha256-ag+sJFprYW3IpH+BiMR5eSRUFMBeVuOnF6GTTuXGBHw=";
        };
      };
    };
  };
in

python.pkgs.buildPythonApplication rec {
  pname = "textual-paint";
  version = "0.1.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "1j01";
    repo = "textual-paint";
    rev = "v${version}";
    hash = "sha256-ubBWK4aoa9+wyUED7CmWwjknWsWauR/mkurDgkKDiY8=";
  };

  nativeBuildInputs = [
    python.pkgs.setuptools
    python.pkgs.wheel
  ];

  propagatedBuildInputs = with python.pkgs; [
    pillow
    pyfiglet
    pyperclip
    rich
    stransi
    textual
  ];

  pythonImportsCheck = [ "textual_paint" ];

  meta = with lib; {
    description = "TUI image editor inspired by MS Paint";
    homepage = "https://github.com/1j01/textual-paint";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "textual-paint";
  };
}