mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Diff: https://github.com/chemelli74/aioamazondevices/compare/v13.4.3...v13.5.0 Changelog: https://github.com/chemelli74/aioamazondevices/blob/v13.5.0/CHANGELOG.md
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
aiohttp,
|
|
beautifulsoup4,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
httpx,
|
|
langcodes,
|
|
lib,
|
|
orjson,
|
|
poetry-core,
|
|
pytest-cov-stub,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioamazondevices";
|
|
version = "13.5.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chemelli74";
|
|
repo = "aioamazondevices";
|
|
tag = "v${version}";
|
|
hash = "sha256-+71t47H4/idWeef8Nf+4TVHB0xEe5mWCQ271ECm3jOg=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
beautifulsoup4
|
|
httpx
|
|
langcodes
|
|
orjson
|
|
python-dateutil
|
|
]
|
|
++ httpx.optional-dependencies.http2;
|
|
|
|
pythonImportsCheck = [ "aioamazondevices" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/chemelli74/aioamazondevices/blob/${src.tag}/CHANGELOG.md";
|
|
description = "Python library to control Amazon devices";
|
|
homepage = "https://github.com/chemelli74/aioamazondevices";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|