python3Packages.python-gammu: 3.2.3 -> 3.2.4

This commit is contained in:
Fabian Affolter 2021-11-17 10:29:11 +01:00 committed by Jonathan Ringer
parent 622582f91e
commit a128f8d8c1

View file

@ -9,25 +9,34 @@
buildPythonPackage rec {
pname = "python-gammu";
version = "3.2.3";
version = "3.2.4";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "gammu";
repo = pname;
rev = version;
sha256 = "sha256-MtFxKRE6CB/LZq9McMyYhjwfs/Rdke9gsNUqbOQdWYQ=";
sha256 = "sha256-lFQBrKWwdvUScwsBva08izZVeVDn1u+ldzixtL9YTpA=";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
pkg-config
];
buildInputs = [ gammu ];
buildInputs = [
gammu
];
# Check with the next release if tests could be run with pytest
# checkInputs = [ pytestCheckHook ];
# Don't run tests for now
doCheck = false;
pythonImportsCheck = [ "gammu" ];
pythonImportsCheck = [
"gammu"
];
meta = with lib; {
description = "Python bindings for Gammu";