Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
future,
|
|
packbits,
|
|
pillow,
|
|
pyusb,
|
|
click,
|
|
attrs,
|
|
jsons,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "brother-ql";
|
|
version = "0.11.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "brother_ql_next";
|
|
inherit version;
|
|
hash = "sha256-3rTf+4W5KK7zSGIE3bBHXHE0hjyvpjB0IiEtbax6mkU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
future
|
|
packbits
|
|
pillow
|
|
pyusb
|
|
click
|
|
attrs
|
|
jsons
|
|
];
|
|
|
|
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/LunarEclipse363/brother_ql_next";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ grahamc ];
|
|
mainProgram = "brother_ql";
|
|
};
|
|
}
|