summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/dronecan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/dronecan/default.nix')
-rw-r--r--pkgs/development/python-modules/dronecan/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/dronecan/default.nix b/pkgs/development/python-modules/dronecan/default.nix
index fc051d105bf6..fc0c3e5e15f1 100644
--- a/pkgs/development/python-modules/dronecan/default.nix
+++ b/pkgs/development/python-modules/dronecan/default.nix
@@ -1,7 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -14,13 +15,9 @@ buildPythonPackage rec {
hash = "sha256-D2odxa9ADswrg6rgKLTyQulHpGec1r0lWRUZDV5YvyE=";
};
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "dronecan"
- ];
+ pythonImportsCheck = [ "dronecan" ];
meta = with lib; {
description = "Python implementation of the DroneCAN v1 protocol stack";