nixos-configs/scopedPackages/hass-components/tuya-local/overrides.nix
matt1432 e67ed81736
All checks were successful
Discord / discord commits (push) Has been skipped
fix(droidcam): set correct make flags
2025-02-18 19:39:30 -05:00

14 lines
396 B
Nix

{...}: python3Packages: final: prev: {
/*
Keep this here to make it easier to always have the right version
tinytuya = prev.tinytuya.overridePythonAttrs (o: rec {
version = "1.16.1";
src = pkgs.fetchFromGitHub {
owner = "jasonacox";
repo = "tinytuya";
rev = "v${version}";
hash = "sha256-+ReTNPKMYUXNA5tu7kZM8/7Bh4XjHSjZTiW8ROHkk5M=";
};
});
*/
}