Merge pull request #201411 from SuperSandro2000/textwrap3

This commit is contained in:
Sandro 2022-11-27 23:28:58 +01:00 committed by GitHub
commit c715355bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, tox
, pytest
, coverage
, pytest-cov
, pytestCheckHook
}:
buildPythonPackage rec {
@ -18,16 +15,9 @@ buildPythonPackage rec {
};
checkInputs = [
tox
pytest
coverage
pytest-cov
pytestCheckHook
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Textwrap from Python 3.6 backport plus a few tweaks";
homepage = "https://github.com/jonathaneunice/textwrap3";