nixpkgs/pkgs/development/python-modules/pyfiglet/default.nix
2021-01-25 18:31:47 +01:00

20 lines
431 B
Nix

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