2025-03-22 11:12:44 +00:00

57 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
flit-core,
# dependencies
importlib-metadata,
# tests
pytestCheckHook,
pypng,
pyzbar,
}:
buildPythonPackage rec {
pname = "segno";
version = "1.6.6";
pyproject = true;
src = fetchFromGitHub {
owner = "heuer";
repo = "segno";
tag = version;
hash = "sha256-A6lESmVogypit0SDeG4g9axn3+welSqTt1A17BNLmvU=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ importlib-metadata ];
nativeCheckInputs = [
pytestCheckHook
pypng
pyzbar
];
disabledTests = [
# https://github.com/heuer/segno/issues/132
"test_plugin"
];
pythonImportsCheck = [ "segno" ];
meta = with lib; {
changelog = "https://github.com/heuer/segno/releases/tag/${src.tag}";
description = "QR Code and Micro QR Code encoder";
mainProgram = "segno";
homepage = "https://github.com/heuer/segno/";
license = licenses.bsd3;
maintainers = with maintainers; [ phaer ];
};
}