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