depot/third_party/nixpkgs/pkgs/development/python-modules/zxing_cpp/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

49 lines
1.1 KiB
Nix

{ buildPythonPackage
, lib
, cmake
, pybind11
, zxing-cpp
, numpy
, pillow
}:
buildPythonPackage rec {
pname = "zxing_cpp";
inherit (zxing-cpp) src version;
sourceRoot = "${src.name}/wrappers/python";
patches = [
./use-nixpkgs-pybind11.patch
];
dontUseCmakeConfigure = true;
propagatedBuildInputs = [
pybind11
numpy
];
nativeBuildInputs = [
cmake
];
nativeCheckInputs = [
pillow
];
meta = with lib; {
homepage = "https://github.com/zxing-cpp/zxing-cpp";
description = "Python bindings for C++ port of zxing (a Java barcode image processing library)";
longDescription = ''
ZXing-C++ ("zebra crossing") is an open-source, multi-format 1D/2D barcode
image processing library implemented in C++.
It was originally ported from the Java ZXing Library but has been
developed further and now includes many improvements in terms of quality
and performance. It can both read and write barcodes in a number of
formats.
'';
license = licenses.asl20;
maintainers = with maintainers; [ lukegb ];
platforms = with platforms; unix;
};
}