depot/third_party/nixpkgs/pkgs/development/python-modules/python-zbar/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

59 lines
1.2 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 ];
};
}