depot/third_party/nixpkgs/pkgs/development/python-modules/python-gammu/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
883 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
#, pytestCheckHook
pythonOlder,
pkg-config,
gammu,
}:
buildPythonPackage rec {
pname = "python-gammu";
version = "3.2.4";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "gammu";
repo = pname;
rev = version;
hash = "sha256-lFQBrKWwdvUScwsBva08izZVeVDn1u+ldzixtL9YTpA=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gammu ];
# Check with the next release if tests could be run with pytest
# nativeCheckInputs = [ 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 ];
};
}