fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / python-modules / textwrap3 / default.nix
blob1cf7dcb376ead95ec051bfb56971bb30dc825d15
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "textwrap3";
10   version = "0.9.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     extension = "zip";
16     sha256 = "5008eeebdb236f6303dcd68f18b856d355f6197511d952ba74bc75e40e0c3414";
17   };
19   nativeCheckInputs = [ pytestCheckHook ];
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   };