1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 11:10:03 +00:00

python312Packages.brother-ql: switch to maintained fork (#328273)

This commit is contained in:
éclairevoyant 2024-09-10 20:34:18 +00:00 committed by GitHub
commit e13336b5d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,43 +1,37 @@
{
fetchPypi,
fetchpatch,
buildPythonPackage,
setuptools,
future,
packbits,
pillow,
pyusb,
click,
attrs,
jsons,
lib,
}:
buildPythonPackage rec {
pname = "brother-ql";
version = "0.9.4";
format = "setuptools";
version = "0.11.2";
pyproject = true;
src = fetchPypi {
pname = "brother_ql";
pname = "brother_ql_next";
inherit version;
hash = "sha256-H1xXoDnwEsnCBDl/RwAB9267dINCHr3phdDLPGFOhmA=";
hash = "sha256-3rTf+4W5KK7zSGIE3bBHXHE0hjyvpjB0IiEtbax6mkU=";
};
propagatedBuildInputs = [
setuptools
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=";
})
jsons
];
meta = with lib; {
@ -46,8 +40,8 @@ buildPythonPackage rec {
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;
homepage = "https://github.com/LunarEclipse363/brother_ql_next";
license = licenses.gpl3Only;
maintainers = with maintainers; [ grahamc ];
mainProgram = "brother_ql";
};