nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ha-mqtt-discoverable-cli: 0.16.4.1 -> 0.18.0

Diff: https://github.com/unixorn/ha-mqtt-discoverable-cli/compare/refs/tags/v0.16.4.1...v0.18.0

Changelog: https://github.com/unixorn/ha-mqtt-discoverable-cli/releases/tag/v0.18.0

+8 -14
+8 -14
pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
··· 4 4 python3, 5 5 }: 6 6 7 - let 8 - python = python3.override { 9 - self = python; 10 - packageOverrides = self: super: { 11 - # https://github.com/unixorn/ha-mqtt-discoverable/pull/310 12 - paho-mqtt = self.paho-mqtt_1; 13 - }; 14 - }; 15 - in 16 - python.pkgs.buildPythonApplication rec { 7 + python3.pkgs.buildPythonApplication rec { 17 8 pname = "ha-mqtt-discoverable-cli"; 18 - version = "0.16.4.1"; 9 + version = "0.18.0"; 19 10 pyproject = true; 20 11 21 12 src = fetchFromGitHub { 22 13 owner = "unixorn"; 23 14 repo = "ha-mqtt-discoverable-cli"; 24 15 tag = "v${version}"; 25 - hash = "sha256-VjHsiF4HxGscG1pysxegPyM+Y18CWW06D3WezD+BLss="; 16 + hash = "sha256-bPgVPj/ZfHznY0cY1ac0TlhCCdw3ZssL/E8yo0gACgQ="; 26 17 }; 27 18 28 19 pythonRelaxDeps = [ "ha-mqtt-discoverable" ]; 29 20 30 - build-system = with python.pkgs; [ poetry-core ]; 21 + build-system = with python3.pkgs; [ poetry-core ]; 31 22 32 - dependencies = with python.pkgs; [ ha-mqtt-discoverable ]; 23 + dependencies = with python3.pkgs; [ 24 + gitlike-commands 25 + ha-mqtt-discoverable 26 + ]; 33 27 34 28 # Project has no real tests 35 29 doCheck = false;