587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonAtLeast
|
|
, setuptools
|
|
, pillow
|
|
, zbar
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-zbar";
|
|
version = "0.23.93";
|
|
pyproject = true;
|
|
|
|
# distutils usage in setup.py
|
|
disabled = pythonAtLeast "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mchehab";
|
|
repo = "zbar";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-6gOqMsmlYy6TK+iYPIBsCPAk8tYDliZYMYeTOidl4XQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
cd python
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pillow ];
|
|
|
|
buildInputs = [ zbar ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
#AssertionError: b'Y800' != 'Y800'
|
|
"test_format"
|
|
"test_new"
|
|
#Requires loading a recording device
|
|
#zbar.SystemError: <zbar.Processor object at 0x7ffff615a680>
|
|
"test_processing"
|
|
# Version too long?
|
|
# self.assertEqual(len(ver), 2)
|
|
"test_version"
|
|
];
|
|
|
|
pythonImportsCheck = [ "zbar" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for zbar";
|
|
homepage = "https://github.com/mchehab/zbar";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ wolfangaukang ];
|
|
};
|
|
}
|