mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
python3Packages.executor: reformat
This commit is contained in:
parent
ff9f36a499
commit
ac88e1c2aa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user