2018-03-09 09:21:44 +00:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage
|
|
|
|
, pkgconfig
|
|
|
|
, libgphoto2 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gphoto2";
|
2020-10-16 18:00:45 +01:00
|
|
|
version = "2.2.3";
|
2018-03-09 09:21:44 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-16 18:00:45 +01:00
|
|
|
sha256 = "35d3ae97a9f13526746fb506de627a73328328528b436a51567fcb7e640883e9";
|
2018-03-09 09:21:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libgphoto2 ];
|
|
|
|
|
|
|
|
doCheck = false; # No tests available
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python interface to libgphoto2";
|
2020-02-26 22:27:55 +00:00
|
|
|
homepage = "https://github.com/jim-easterbrook/python-gphoto2";
|
2018-03-09 09:21:44 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jfrankenau ];
|
|
|
|
};
|
|
|
|
}
|