depot/third_party/nixpkgs/pkgs/development/python-modules/python-gammu/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

38 lines
843 B
Nix

{ 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 ];
};
}