83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
52 lines
972 B
Nix
52 lines
972 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, termcolor
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yaspin";
|
|
version = "2.3.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pavdmyt";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-TURfjhEqkg8TT7dsoIOn2iAeD7+lX8+s9hItritf1GU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
termcolor
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
# https://github.com/pavdmyt/yaspin/pull/212
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'termcolor-whl = "1.1.2"' 'termcolor = "*"'
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"yaspin"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Yet Another Terminal Spinner";
|
|
homepage = "https://github.com/pavdmyt/yaspin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|