02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
22 lines
452 B
Nix
22 lines
452 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "terminaltables";
|
|
version = "3.1.10";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "ba6eca5cb5ba02bba4c9f4f985af80c54ec3dccf94cfcd190154386255e47543";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Display simple tables in terminals";
|
|
homepage = "https://github.com/Robpol86/terminaltables";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|