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

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
flit-core,
# dependencies
importlib-metadata,
# tests
pytestCheckHook,
pypng,
pyzbar,
}:
buildPythonPackage rec {
pname = "segno";
version = "1.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "heuer";
repo = "segno";
rev = "refs/tags/${version}";
hash = "sha256-5CDrQhbgUydz1ORp4ktZwhcgbJxQq1snKIAA0v4mZ00=";
};
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/${version}";
description = "QR Code and Micro QR Code encoder";
mainProgram = "segno";
homepage = "https://github.com/heuer/segno/";
license = licenses.bsd3;
maintainers = with maintainers; [ phaer ];
};
}