1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "textwrap3"; 9 version = "0.9.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 extension = "zip"; 14 sha256 = "5008eeebdb236f6303dcd68f18b856d355f6197511d952ba74bc75e40e0c3414"; 15 }; 16 17 nativeCheckInputs = [ 18 pytestCheckHook 19 ]; 20 21 meta = with lib; { 22 description = "Textwrap from Python 3.6 backport plus a few tweaks"; 23 homepage = "https://github.com/jonathaneunice/textwrap3"; 24 license = licenses.psfl; 25 maintainers = [ ]; 26 }; 27}