about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyfiglet/default.nix
blob: e9671e03cb3bc5589633ef931d17a237d78d9b85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 ];
  };
}