20 lines
441 B
Nix
20 lines
441 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.8.post1";
|
|
pname = "pyfiglet";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c6c2321755d09267b438ec7b936825a4910fec696292139e664ca8670e103639";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "FIGlet in pure Python";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|