summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-gammu/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-gammu/default.nix')
-rw-r--r--pkgs/development/python-modules/python-gammu/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/python-gammu/default.nix b/pkgs/development/python-modules/python-gammu/default.nix
index 4fb5e259329a..ed35a96f7752 100644
--- a/pkgs/development/python-modules/python-gammu/default.nix
+++ b/pkgs/development/python-modules/python-gammu/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
#, pytestCheckHook
-, pythonOlder
-, pkg-config
-, gammu
+ pythonOlder,
+ pkg-config,
+ gammu,
}:
buildPythonPackage rec {
@@ -21,22 +22,16 @@ buildPythonPackage rec {
hash = "sha256-lFQBrKWwdvUScwsBva08izZVeVDn1u+ldzixtL9YTpA=";
};
- nativeBuildInputs = [
- pkg-config
- ];
+ nativeBuildInputs = [ pkg-config ];
- buildInputs = [
- gammu
- ];
+ 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"
- ];
+ pythonImportsCheck = [ "gammu" ];
meta = with lib; {
description = "Python bindings for Gammu";