python3Packages.python-gammu: init at 3.1

This commit is contained in:
Fabian Affolter 2021-02-27 15:51:01 +01:00
parent 870dbb751f
commit 418ba054f5
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
#, pytestCheckHook
, pythonOlder
, pkg-config
, gammu
}:
buildPythonPackage rec {
pname = "python-gammu";
version = "3.1";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "gammu";
repo = pname;
rev = version;
sha256 = "1hw2mfrps6wqfyi40p5mp9r59n1ick6pj4hw5njz0k822pbb33p0";
};
nativeBuildInputs = [ pkg-config ];
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" ];
meta = with lib; {
description = "Python bindings for Gammu";
homepage = "https://github.com/gammu/python-gammu/";
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6361,6 +6361,8 @@ in {
python-frontmatter = callPackage ../development/python-modules/python-frontmatter { };
python-gammu = callPackage ../development/python-modules/python-gammu { };
python-gitlab = callPackage ../development/python-modules/python-gitlab { };
python-gnupg = callPackage ../development/python-modules/python-gnupg { };