summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyfiglet/default.nix
blob: 9308a7467366ea22ad59cde7cc28e5d496354bde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  version = "0.7.5";
  pname = "pyfiglet";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "04jy4182hn5xfs6jf432gxclfj1rhssd7bsf0b4gymrjzkhr8qa4";
  };

  doCheck = false;

  meta = with stdenv.lib; {
    description = "FIGlet in pure Python";
    license     = licenses.gpl2Plus;
    maintainers = with maintainers; [ thoughtpolice ];
  };
}