Diff: https://github.com/zweckj/aioacaia/compare/refs/tags/v0.1.14...v0.1.16 Changelog: https://github.com/zweckj/aioacaia/releases/tag/v0.1.16
41 lines
833 B
Nix
41 lines
833 B
Nix
{
|
|
lib,
|
|
bleak,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioacaia";
|
|
version = "0.1.16";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zweckj";
|
|
repo = "aioacaia";
|
|
tag = "v${version}";
|
|
hash = "sha256-7b5ZIrChMVPGREg7M+O8m2RDJGKgdTcEcGpTF6KBy1k=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ bleak ];
|
|
|
|
# Module only has a homebrew tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "aioacaia" ];
|
|
|
|
meta = {
|
|
description = "Async implementation of pyacaia";
|
|
homepage = "https://github.com/zweckj/aioacaia";
|
|
changelog = "https://github.com/zweckj/aioacaia/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|