mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
python311Packages.dronecan: init at 1.0.25
This commit is contained in:
parent
1ffb4e592e
commit
c439cbc78f
36
pkgs/development/python-modules/dronecan/default.nix
Normal file
36
pkgs/development/python-modules/dronecan/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user