python311Packages.fyta-cli: init at 0.3.4

Module to access the FYTA API

https://github.com/dontinelli/fyta_cli
This commit is contained in:
Fabian Affolter 2024-04-03 21:36:50 +02:00 committed by Martin Weinelt
parent 141dcf1ddc
commit 2707694daa
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pythonOlder,
}:
buildPythonPackage rec {
pname = "fyta-cli";
version = "0.3.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dontinelli";
repo = "fyta_cli";
rev = "refs/tags/v${version}";
hash = "sha256-DqJR8xzR9vBowztji39UtX7UYA8hK+QYKUygPA+v33k=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "fyta_cli" ];
meta = with lib; {
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 = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -4552,6 +4552,8 @@ self: super: with self; {
fx2 = callPackage ../development/python-modules/fx2 { };
fyta-cli = callPackage ../development/python-modules/fyta-cli { };
g2pkk = callPackage ../development/python-modules/g2pkk { };
galario = toPythonModule (pkgs.galario.override {