Files
nixpkgs/pkgs/development/python-modules/fyta-cli/default.nix
T
Martin Weinelt 8ea6bde88d treewide: prune pythonOlder 3.10/3.11
This is a post 3.10 removal cleanup.
2026-02-15 04:33:54 +01:00

54 lines
1.0 KiB
Nix

{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
hatchling,
mashumaro,
pytest-asyncio,
pytestCheckHook,
syrupy,
}:
buildPythonPackage rec {
pname = "fyta-cli";
version = "0.7.2";
pyproject = true;
src = fetchFromGitHub {
owner = "dontinelli";
repo = "fyta_cli";
tag = "v${version}";
hash = "sha256-YYH15ZuRZirSFC7No1goY/afk2BGtCCykcZAnCDdq7U=";
};
build-system = [ hatchling ];
dependencies = [
aiohttp
mashumaro
];
doCheck = false; # Failed: async def functions are not natively supported.
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
syrupy
];
pythonImportsCheck = [ "fyta_cli" ];
pytestFlags = [ "--snapshot-update" ];
meta = {
description = "Module to access the FYTA API";
homepage = "https://github.com/dontinelli/fyta_cli";
changelog = "https://github.com/dontinelli/fyta_cli/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}