Files
nixpkgs/pkgs/development/python-modules/gphoto2/default.nix
T
2025-10-25 05:24:45 +00:00

49 lines
908 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pkg-config,
libgphoto2,
pytestCheckHook,
setuptools,
toml,
}:
buildPythonPackage rec {
pname = "gphoto2";
version = "2.6.3";
pyproject = true;
src = fetchFromGitHub {
owner = "jim-easterbrook";
repo = "python-gphoto2";
tag = "v${version}";
hash = "sha256-inxKfZ/u7b9Kx1ytmEKJsK2PnnrhSI54A2Dm6Mtxnmc=";
};
build-system = [
setuptools
toml
];
nativeBuildInputs = [
pkg-config
];
buildInputs = [ libgphoto2 ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "gphoto2" ];
meta = {
changelog = "https://github.com/jim-easterbrook/python-gphoto2/blob/${src.tag}/CHANGELOG.txt";
description = "Python interface to libgphoto2";
homepage = "https://github.com/jim-easterbrook/python-gphoto2";
license = lib.licenses.lgpl3Plus;
maintainers = [ ];
};
}