mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-29 05:25:48 +00:00
38 lines
845 B
Nix
38 lines
845 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "aionanoleaf2";
|
|
version = "1.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "loebi-ch";
|
|
repo = "aionanoleaf2";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-Auh69JY07nnZKRUGPkaqo4DjZNeNkY8FIlsjch3JLu4=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ aiohttp ];
|
|
|
|
# upstream has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "aionanoleaf2" ];
|
|
|
|
meta = {
|
|
description = "Async Python package for the Nanoleaf API";
|
|
homepage = "https://github.com/loebi-ch/aionanoleaf2";
|
|
changelog = "https://github.com/loebi-ch/aionanoleaf2/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = [ lib.maintainers.jamiemagee ];
|
|
};
|
|
})
|