Files
nixpkgs/pkgs/development/python-modules/dronecan/default.nix
T
Raito Bezarius 34c4aa7330 treewide(maintainers): fix team maintainers for ororatech
This is the only team in nixpkgs that unfortunately broke the maintainers schema.
2023-12-05 07:05:27 +01:00

37 lines
800 B
Nix

{ 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.members;
};
}