python3Packages.pyoppleio-legacy: init at 1.0.8

This commit is contained in:
Jamie Magee
2025-08-10 18:57:35 -07:00
parent 44d0466409
commit 6999b03d62
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
crc16,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage {
pname = "pyoppleio-legacy";
version = "1.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "tinysnake";
repo = "python-oppleio-legacy";
rev = "90c57f778554fcf3a00e42757d0e92caebcfd149";
hash = "sha256-ccvMn/jQSkW11uMwG3P+i53NiDj+MNZgJYEkouQ1tvU=";
};
build-system = [ setuptools ];
# Package has a runtime dependency on 'pycrc16' but we provide 'crc16'
# They provide the same crc16 module
pythonRemoveDeps = [ "pycrc16" ];
dependencies = [ crc16 ];
# Package has no tests
doCheck = false;
meta = {
description = "Python library for interfacing with Opple WiFi lights (legacy firmware support)";
homepage = "https://github.com/tinysnake/python-oppleio-legacy";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -13470,6 +13470,8 @@ self: super: with self; {
pyoppleio = callPackage ../development/python-modules/pyoppleio { };
pyoppleio-legacy = callPackage ../development/python-modules/pyoppleio-legacy { };
pyorc = callPackage ../development/python-modules/pyorc { };
pyorthanc = callPackage ../development/python-modules/pyorthanc { };