python3Packages.pyflipper: init at 0.18-unstable-2024-04-15

This commit is contained in:
Ben Siraphob 2024-09-22 10:12:19 -04:00
parent 732b635f4f
commit f6c2abe751
No known key found for this signature in database
GPG Key ID: 45F0E5D788143267
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pyserial,
websocket-client,
setuptools,
}:
buildPythonPackage rec {
pname = "pyflipper";
version = "0.18-unstable-2024-04-15";
pyproject = true;
src = fetchFromGitHub {
owner = "wh00hw";
repo = "pyFlipper";
rev = "e8a82a25eb766fac53a2e6e5fff6505f60cf0897";
hash = "sha256-CQ6oVVkLxyoNoe7L0USfal1980VkfiuHc4cqXTsZ2Jc=";
};
build-system = [ setuptools ];
dependencies = [ pyserial websocket-client ];
pythonImportsCheck = [
"pyflipper"
];
meta = with lib; {
description = "Flipper Zero Python CLI Wrapper";
homepage = "https://github.com/wh00hw/pyFlipper";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}

View File

@ -11257,6 +11257,8 @@ self: super: with self; {
pyflume = callPackage ../development/python-modules/pyflume { };
pyflipper = callPackage ../development/python-modules/pyflipper { };
pyfma = callPackage ../development/python-modules/pyfma { };
pyfribidi = callPackage ../development/python-modules/pyfribidi { };