nixpkgs/pkgs/development/python-modules/yaspin/default.nix

53 lines
1006 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytest-xdist,
pytestCheckHook,
pythonOlder,
termcolor,
}:
buildPythonPackage rec {
pname = "yaspin";
version = "3.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pavdmyt";
repo = "yaspin";
rev = "refs/tags/v${version}";
hash = "sha256-4IWaAPqzGri7V8X2gL607F5GlWfIFDlBBpDwSe4sz9I=";
};
build-system = [ poetry-core ];
dependencies = [ termcolor ];
pythonRelaxDeps = [
"termcolor"
];
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];
# tests assert for \033 which gets turned off in termcolor when TERM dumb is used which is used by nix
preCheck = ''
export FORCE_COLOR=1
'';
pythonImportsCheck = [ "yaspin" ];
meta = with lib; {
description = "Yet Another Terminal Spinner";
homepage = "https://github.com/pavdmyt/yaspin";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}