lol

python313Packages.benqprojector: 0.1.6 -> 0.1.8 (#446737)

authored by

Yohann Boniface and committed by
GitHub
6755ef8e 74941ca8

+5 -3
+5 -3
pkgs/development/python-modules/benqprojector/default.nix
··· 1 1 { 2 2 lib, 3 + aiofiles, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 hatchling, ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "benqprojector"; 13 - version = "0.1.6"; 14 + version = "0.1.8"; 14 15 pyproject = true; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "rrooggiieerr"; 18 19 repo = "benqprojector.py"; 19 20 tag = version; 20 - hash = "sha256-Ys2C44kr5gd6tXO51OFRx4YVKVRGLfFPCYDFGt+gN0c="; 21 + hash = "sha256-BttaLpjiybjeoJhOXfo6Qlox4bRqf9auvNg/wtm9gMQ="; 21 22 }; 22 23 23 24 build-system = [ ··· 26 27 ]; 27 28 28 29 dependencies = [ 30 + aiofiles 29 31 pyserial 30 32 pyserial-asyncio-fast 31 33 ]; ··· 38 40 meta = rec { 39 41 description = "Python library to control BenQ projectors"; 40 42 homepage = "https://github.com/rrooggiieerr/benqprojector.py"; 41 - changelog = "${homepage}/releases/tag/${version}"; 43 + changelog = "${homepage}/releases/tag/${src.tag}"; 42 44 license = lib.licenses.asl20; 43 45 maintainers = with lib.maintainers; [ sephalon ]; 44 46 };