python313Packages.pyflipper: 0.18-unstable-2024-04-15 -> 0.21

Diff: https://github.com/wh00hw/pyFlipper/compare/refs/tags/v0.18-unstable-2024-04-15...refs/tags/v0.21

Changelog: https://github.com/wh00hw/pyFlipper/releases/tag/v0.21

+5 -5
+5 -5
pkgs/development/python-modules/pyflipper/default.nix
··· 8 8 websocket-client, 9 9 }: 10 10 11 - buildPythonPackage { 11 + buildPythonPackage rec { 12 12 pname = "pyflipper"; 13 - version = "0.18-unstable-2024-04-15"; 13 + version = "0.21"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.10"; ··· 18 18 src = fetchFromGitHub { 19 19 owner = "wh00hw"; 20 20 repo = "pyFlipper"; 21 - # https://github.com/wh00hw/pyFlipper/issues/20 22 - rev = "e8a82a25eb766fac53a2e6e5fff6505f60cf0897"; 23 - hash = "sha256-CQ6oVVkLxyoNoe7L0USfal1980VkfiuHc4cqXTsZ2Jc="; 21 + tag = "v${version}"; 22 + hash = "sha256-IMd9RzGblfsyDH4TC+ip5a2zx4gzXbzjIaWMldEy5xk="; 24 23 }; 25 24 26 25 build-system = [ setuptools ]; ··· 38 37 meta = { 39 38 description = "Flipper Zero Python CLI Wrapper"; 40 39 homepage = "https://github.com/wh00hw/pyFlipper"; 40 + changelog = "https://github.com/wh00hw/pyFlipper/releases/tag/${src.tag}"; 41 41 license = lib.licenses.mit; 42 42 maintainers = with lib.maintainers; [ siraben ]; 43 43 };