gammu: does not use python

+4 -2
+4 -2
pkgs/applications/misc/gammu/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, pkg-config, cmake, bluez, libusb1, curl 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake, bluez, libusb1, curl 2 2 , libiconv, gettext, sqlite 3 3 , dbiSupport ? false, libdbi ? null, libdbiDrivers ? null 4 4 , postgresSupport ? false, postgresql ? null ··· 21 21 22 22 nativeBuildInputs = [ pkg-config cmake ]; 23 23 24 - buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ] 24 + strictDeps = true; 25 + 26 + buildInputs = [ bluez libusb1 curl gettext sqlite libiconv ] 25 27 ++ optionals dbiSupport [ libdbi libdbiDrivers ] 26 28 ++ optionals postgresSupport [ postgresql ]; 27 29