nixpkgs/pkgs/development/python-modules/gphoto2/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

27 lines
596 B
Nix

{ lib, fetchPypi, buildPythonPackage
, pkg-config
, libgphoto2 }:
buildPythonPackage rec {
pname = "gphoto2";
version = "2.3.4";
src = fetchPypi {
inherit pname version;
hash = "sha256-mEbF/fOtw0cU/bx7DgQcmmJ/yqal8Hs/1KaLGC3e4/c=";
};
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 ];
};
}