83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pillow
|
|
, zbar
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-zbar";
|
|
version = "0.23.90";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mchehab";
|
|
repo = "zbar";
|
|
rev = version;
|
|
hash = "sha256-FvV7TMc4JbOiRjWLka0IhtpGGqGm5fis7h870OmJw2U=";
|
|
};
|
|
|
|
patches = [
|
|
# python: enum: fix build for Python 3.11
|
|
# https://github.com/mchehab/zbar/pull/231
|
|
# the patch is reworked as it does not cleanly apply
|
|
./0001-python-enum-fix-build-for-Python-3.11.patch
|
|
];
|
|
|
|
propagatedBuildInputs = [ pillow ];
|
|
|
|
buildInputs = [ zbar ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preBuild = ''
|
|
cd python
|
|
'';
|
|
|
|
disabledTests = [
|
|
#AssertionError: b'Y800' != 'Y800'
|
|
"test_format"
|
|
"test_new"
|
|
#Requires loading a recording device
|
|
#zbar.SystemError: <zbar.Processor object at 0x7ffff615a680>
|
|
"test_processing"
|
|
];
|
|
|
|
pythonImportsCheck = [ "zbar" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for zbar";
|
|
homepage = "https://github.com/mchehab/zbar";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ wolfangaukang ];
|
|
};
|
|
}
|