Files
nixpkgs/pkgs/development/python-modules/pyfiglet/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

22 lines
469 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "1.0.2";
format = "setuptools";
pname = "pyfiglet";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-dYeIAYq4+q3cCYTh6gX/Mw08ZL5mPFE8wfEF9qMGbas=";
};
doCheck = false;
meta = with lib; {
description = "FIGlet in pure Python";
mainProgram = "pyfiglet";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ thoughtpolice ];
};
}