about summary refs log tree commit diff
path: root/pkgs/development/python-modules/brother-ql/default.nix
blob: ccf512a05db233f24052b8e27d46f0560fcb5d38 (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
{
  fetchPypi,
  fetchpatch,
  buildPythonPackage,
  future,
  packbits,
  pillow,
  pyusb,
  pytest,
  mock,
  click,
  attrs,
  lib,
}:

buildPythonPackage rec {
  pname = "brother-ql";
  version = "0.9.4";
  format = "setuptools";

  src = fetchPypi {
    pname = "brother_ql";
    inherit version;
    hash = "sha256-H1xXoDnwEsnCBDl/RwAB9267dINCHr3phdDLPGFOhmA=";
  };

  propagatedBuildInputs = [
    future
    packbits
    pillow
    pyusb
    click
    attrs
  ];

  patches = [
    (fetchpatch {
      # Make compatible with Pillow>=10.0; https://github.com/pklaus/brother_ql/pull/143
      name = "brother-ql-pillow10-compat.patch";
      url = "https://github.com/pklaus/brother_ql/commit/a7e1b94b41f3a6e0f8b365598bc34fb47ca95a6d.patch";
      hash = "sha256-v3YhmsUWBwE/Vli1SbTQO8q1zbtWYI9iMlVFvz5sxmg=";
    })
  ];

  meta = with lib; {
    description = "Python package for the raster language protocol of the Brother QL series label printers";
    longDescription = ''
      Python package for the raster language protocol of the Brother QL series label printers
      (QL-500, QL-550, QL-570, QL-700, QL-710W, QL-720NW, QL-800, QL-820NWB, QL-1050 and more)
    '';
    homepage = "https://github.com/pklaus/brother_ql";
    license = licenses.gpl3;
    maintainers = with maintainers; [ grahamc ];
    mainProgram = "brother_ql";
  };
}