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