python311Packages.dronecan: init at 1.0.25

This commit is contained in:
Leandro Reina 2023-08-24 13:56:12 +02:00 committed by Jörg Thalheim
parent 1ffb4e592e
commit c439cbc78f
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dronecan";
version = "1.0.25";
format = "setuptools";
disabled = pythonOlder "3.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-0WKmVZwE6OgBckWWvPcn5BYqXMEt6Mr1P68UMHfRp4I=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"dronecan"
];
meta = with lib; {
description = "Python implementation of the DroneCAN v1 protocol stack";
longDescription = ''
DroneCAN is a lightweight protocol designed for reliable communication in aerospace and robotic applications via CAN bus.
'';
homepage = "https://dronecan.github.io/";
license = licenses.mit;
maintainers = [ teams.ororatech ];
};
}

View File

@ -3220,6 +3220,8 @@ self: super: with self; {
drms = callPackage ../development/python-modules/drms { };
dronecan = callPackage ../development/python-modules/dronecan { };
dropbox = callPackage ../development/python-modules/dropbox { };
ds-store = callPackage ../development/python-modules/ds-store { };