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 2 , libiconv, gettext, sqlite 3 , dbiSupport ? false, libdbi ? null, libdbiDrivers ? null 4 , postgresSupport ? false, postgresql ? null ··· 21 22 nativeBuildInputs = [ pkg-config cmake ]; 23 24 - buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ] 25 ++ optionals dbiSupport [ libdbi libdbiDrivers ] 26 ++ optionals postgresSupport [ postgresql ]; 27
··· 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake, bluez, libusb1, curl 2 , libiconv, gettext, sqlite 3 , dbiSupport ? false, libdbi ? null, libdbiDrivers ? null 4 , postgresSupport ? false, postgresql ? null ··· 21 22 nativeBuildInputs = [ pkg-config cmake ]; 23 24 + strictDeps = true; 25 + 26 + buildInputs = [ bluez libusb1 curl gettext sqlite libiconv ] 27 ++ optionals dbiSupport [ libdbi libdbiDrivers ] 28 ++ optionals postgresSupport [ postgresql ]; 29