mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
02db5ff294
Diff: https://github.com/zweckj/aioacaia/compare/refs/tags/v0.1.10...v0.1.11 Changelog: https://github.com/zweckj/aioacaia/releases/tag/v0.1.11
41 lines
843 B
Nix
41 lines
843 B
Nix
{
|
|
lib,
|
|
bleak,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioacaia";
|
|
version = "0.1.11";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zweckj";
|
|
repo = "aioacaia";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-9lRF3NrJ/Zl7ZOihiUiflxCjUi9WHjovgbpFebJJl9M=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|