My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-gammu/default.nix

47 lines
889 B

{ 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;
sha256 = "sha256-lFQBrKWwdvUScwsBva08izZVeVDn1u+ldzixtL9YTpA=";
};
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 ];
};
}