mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 07:16:34 +01:00
https://github.com/miaucl/cookidoo-api/releases/tag/0.16.0 This commit was automatically generated using update-python-libraries.
51 lines
979 B
Nix
51 lines
979 B
Nix
{
|
|
aiofiles,
|
|
aiohttp,
|
|
aioresponses,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
isodate,
|
|
lib,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
python-dotenv,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cookidoo-api";
|
|
version = "0.16.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miaucl";
|
|
repo = "cookidoo-api";
|
|
tag = version;
|
|
hash = "sha256-Qg2zyQrgRo21wAGYfzeZbUnBM4zHHDdq3kzGLo1UJ8M=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiofiles
|
|
aiohttp
|
|
isodate
|
|
];
|
|
|
|
pythonImportsCheck = [ "cookidoo_api" ];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
python-dotenv
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/miaucl/cookidoo-api/releases/tag/${src.tag}";
|
|
description = "Unofficial package to access Cookidoo";
|
|
homepage = "https://github.com/miaucl/cookidoo-api";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|