depot/third_party/nixpkgs/pkgs/development/python-modules/textwrap3/default.nix
Default email 7d542a9f98 Project import generated by Copybara.
GitOrigin-RevId: b72b8b94cf0c012b0252a9100a636cad69696666
2022-12-02 08:20:57 +00:00

27 lines
568 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "textwrap3";
version = "0.9.2";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "5008eeebdb236f6303dcd68f18b856d355f6197511d952ba74bc75e40e0c3414";
};
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Textwrap from Python 3.6 backport plus a few tweaks";
homepage = "https://github.com/jonathaneunice/textwrap3";
license = licenses.psfl;
maintainers = [ maintainers.costrouc ];
};
}