python3Packages.executor: reformat

This commit is contained in:
Martin Weinelt 2023-01-03 01:46:16 +01:00
parent ff9f36a499
commit ac88e1c2aa

View file

@ -1,8 +1,21 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27, coloredlogs, property-manager, fasteners, pytestCheckHook, mock, virtualenv }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, coloredlogs
, humanfriendly
, property-manager
, fasteners
, six
, pytestCheckHook
, mock
, virtualenv
}:
buildPythonPackage rec {
pname = "executor";
version = "23.2";
format = "setuptools";
disabled = isPy27;
src = fetchFromGitHub {
@ -12,9 +25,19 @@ buildPythonPackage rec {
sha256 = "1mr0662c5l5zx0wjapcprp8p2xawfd0im3616df5sgv79fqzwfqs";
};
propagatedBuildInputs = [ coloredlogs property-manager fasteners ];
propagatedBuildInputs = [
coloredlogs
humanfriendly
property-manager
fasteners
six
];
checkInputs = [ pytestCheckHook mock virtualenv ];
checkInputs = [
pytestCheckHook
mock
virtualenv
];
# ignore impure tests
disabledTests = [
@ -28,6 +51,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/xolox/python-executor/blob/${version}/CHANGELOG.rst";
description = "Programmer friendly subprocess wrapper";
homepage = "https://github.com/xolox/python-executor";
license = licenses.mit;