Skip to content

Instantly share code, notes, and snippets.

@markus1189
Created May 31, 2024 08:52
Show Gist options
  • Save markus1189/c5f35c73fa3bd40eca596e0a1e8755eb to your computer and use it in GitHub Desktop.
Save markus1189/c5f35c73fa3bd40eca596e0a1e8755eb to your computer and use it in GitHub Desktop.
Terminaltexteffects
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, poetry-core
}:
buildPythonPackage rec {
pname = "terminaltexteffects";
version = "0.10.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-NyWPfdgLeXAxKPJOzB7j4aT+zjrURN59CGcv0Vt99y0=";
};
nativeBuildInputs = [
poetry-core
];
nativeCheckInputs = [
pytestCheckHook
];
doCheck = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment