Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / python-gammu / default.nix
blob4fb5e259329af30b7af57d4267e39c80c8d2a5a9
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4   #, pytestCheckHook
5 , pythonOlder
6 , pkg-config
7 , gammu
8 }:
10 buildPythonPackage rec {
11   pname = "python-gammu";
12   version = "3.2.4";
13   format = "setuptools";
15   disabled = pythonOlder "3.5";
17   src = fetchFromGitHub {
18     owner = "gammu";
19     repo = pname;
20     rev = version;
21     hash = "sha256-lFQBrKWwdvUScwsBva08izZVeVDn1u+ldzixtL9YTpA=";
22   };
24   nativeBuildInputs = [
25     pkg-config
26   ];
28   buildInputs = [
29     gammu
30   ];
32   # Check with the next release if tests could be run with pytest
33   # nativeCheckInputs = [ pytestCheckHook ];
34   # Don't run tests for now
35   doCheck = false;
37   pythonImportsCheck = [
38     "gammu"
39   ];
41   meta = with lib; {
42     description = "Python bindings for Gammu";
43     homepage = "https://github.com/gammu/python-gammu/";
44     license = with licenses; [ gpl2Plus ];
45     maintainers = with maintainers; [ fab ];
46   };