mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 05:33:25 +00:00
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:
parent
141dcf1ddc
commit
2707694daa
40
pkgs/development/python-modules/fyta-cli/default.nix
Normal file
40
pkgs/development/python-modules/fyta-cli/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user