My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/gphoto2/default.nix

26 lines
598 B

{ lib, fetchPypi, buildPythonPackage
, pkg-config
, libgphoto2 }:
buildPythonPackage rec {
pname = "gphoto2";
version = "2.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-bhHGvUGzXrk7snMzv+R0fd/gnZTFJ3xfse5i2Krpl3I=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libgphoto2 ];
doCheck = false; # No tests available
meta = with lib; {
description = "Python interface to libgphoto2";
homepage = "https://github.com/jim-easterbrook/python-gphoto2";
license = licenses.gpl3;
maintainers = with maintainers; [ jfrankenau ];
};
}