nixpkgs/pkgs/by-name/fi/fichub-cli/package.nix
Wolfgang Walther 95a3185bf8
fichub-cli: disable only test the easy way
There is only one test and this was disabled via some nasty bash eval
hacks in pytestFlagsArray.

Let's just use... doCheck = false instead?
2024-11-12 21:09:42 +01:00

50 lines
1.0 KiB
Nix

{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonApplication rec {
pname = "fichub-cli";
version = "0.10.3";
pyproject = true;
src = fetchPypi {
pname = "fichub_cli";
inherit version;
hash = "sha256-MTExXpuCwi/IfNDUVLMcxfFRwHHNfGJerHkHnh6/hls=";
};
build-system = with python3Packages; [
setuptools
];
dependencies = with python3Packages; [
platformdirs
beautifulsoup4
click
click-plugins
colorama
loguru
requests
tqdm
typer
];
pythonImportsCheck = [
"fichub_cli"
];
nativeCheckInputs = with python3Packages; [
pytestCheckHook
];
# Loading tests tries to download something from pypi.org
doCheck = false;
meta = {
description = "CLI for the fichub.net API";
changelog = "https://github.com/FicHub/fichub-cli/releases/tag/v${version}";
mainProgram = "fichub_cli";
homepage = "https://github.com/FicHub/fichub-cli";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.samasaur ];
};
}