python312Packages.pyheos: update tag (#381696)

This commit is contained in:
Robert Schütz 2025-02-13 08:39:42 -08:00 committed by GitHub
commit 4849e0d5a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "andrewsayre";
repo = "pyheos";
tag = "1.02"; # TODO: https://github.com/andrewsayre/pyheos/issues/104
tag = version;
hash = "sha256-1JybtE5wweuIgZ8eFUX9XYPji7FzxbRFPKy75Fp1nw0=";
};
@ -35,11 +35,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pyheos" ];
meta = with lib; {
meta = {
changelog = "https://github.com/andrewsayre/pyheos/releases/tag/${src.tag}";
description = "Async python library for controlling HEOS devices through the HEOS CLI Protocol";
homepage = "https://github.com/andrewsayre/pyheos";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}