2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2017-08-31 07:01:26 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-02-13 23:37:26 -08:00
|
|
|
version = "0.8.post1";
|
2017-08-31 07:01:26 -07:00
|
|
|
pname = "pyfiglet";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-13 23:37:26 -08:00
|
|
|
sha256 = "c6c2321755d09267b438ec7b936825a4910fec696292139e664ca8670e103639";
|
2017-08-31 07:01:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-08-31 07:01:26 -07:00
|
|
|
description = "FIGlet in pure Python";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|