9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
49 lines
941 B
Nix
49 lines
941 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pybluez
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyusb
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nxt-python";
|
|
version = "3.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "schodet";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-PWeR8xteLMxlOHcJJCtTI0o8QNzwGJVkUACmvf4tXWY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyusb
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
bluetooth = [
|
|
pybluez
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"nxt"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python driver/interface for Lego Mindstorms NXT robot";
|
|
homepage = "https://github.com/schodet/nxt-python";
|
|
changelog = "https://github.com/schodet/nxt-python/releases/tag/${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ ibizaman ];
|
|
};
|
|
}
|