nixos-configs/scopedPackages/hass-components/tuya-local/overrides.nix
matt1432 13453f6839
All checks were successful
Discord / discord commits (push) Has been skipped
docs: add meta to all scoped packages
2025-02-18 15:19:08 -05:00

13 lines
391 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=";
};
});
*/
}