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