1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 version = "1.0.4";
9 format = "setuptools";
10 pname = "pyfiglet";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-25yZQO0b8wSN7/U07VL/La+7ws12ELF7teyh321CeO8=";
15 };
16
17 doCheck = false;
18
19 meta = with lib; {
20 description = "FIGlet in pure Python";
21 mainProgram = "pyfiglet";
22 license = licenses.gpl2Plus;
23 maintainers = with maintainers; [ thoughtpolice ];
24 };
25}