Merge pull request #114564 from fabaff/python-gammu
This commit is contained in:
commit
79efdab171
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -751,7 +751,7 @@
|
|||
"smartthings" = ps: with ps; [ aiohttp-cors hass-nabucasa ]; # missing inputs: pysmartapp pysmartthings
|
||||
"smarty" = ps: with ps; [ ]; # missing inputs: pysmarty
|
||||
"smhi" = ps: with ps; [ ]; # missing inputs: smhi-pkg
|
||||
"sms" = ps: with ps; [ ]; # missing inputs: python-gammu
|
||||
"sms" = ps: with ps; [ python-gammu ];
|
||||
"smtp" = ps: with ps; [ ];
|
||||
"snapcast" = ps: with ps; [ snapcast ];
|
||||
"snips" = ps: with ps; [ aiohttp-cors paho-mqtt ];
|
||||
|
|
|
@ -6371,6 +6371,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 { };
|
||||
|
|
Loading…
Reference in New Issue