python3Packages.pyee: 8.1.0 -> 8.2.2

This commit is contained in:
Fabian Affolter 2021-08-24 23:33:34 +02:00
parent 098ca1a9aa
commit 591817328c

View File

@ -1,28 +1,24 @@
{ buildPythonPackage { lib
, buildPythonPackage
, fetchPypi , fetchPypi
, lib
, vcversioner , vcversioner
, pytest-runner
, mock , mock
, pytest , pytestCheckHook
, pytest-asyncio , pytest-asyncio
, pytest-trio , pytest-trio
, twisted , twisted
, zipp ? null , pythonOlder
, pyparsing ? null
, pyhamcrest
, futures ? null
, attrs ? null
, isPy27
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyee"; pname = "pyee";
version = "8.1.0"; version = "8.2.2";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "92dacc5bd2bdb8f95aa8dd2585d47ca1c4840e2adb95ccf90034d64f725bfd31"; sha256 = "sha256-XH5g+N+VcQ2+F1UOFs4BU/g5kMAO90SEG0Pzce1T6+o=";
}; };
buildInputs = [ buildInputs = [
@ -31,23 +27,18 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
mock mock
pyhamcrest
pytest
pytest-asyncio pytest-asyncio
pytest-trio pytest-trio
pytest-runner pytestCheckHook
twisted twisted
] ++ lib.optional isPy27 [
attrs
futures
pyparsing
zipp
]; ];
meta = { pythonImportsCheck = [ "pyee" ];
description = "A port of Node.js's EventEmitter to python";
meta = with lib; {
description = "A port of Node.js's EventEmitter to Python";
homepage = "https://github.com/jfhbrook/pyee"; homepage = "https://github.com/jfhbrook/pyee";
license = lib.licenses.mit; license = licenses.mit;
maintainers = with lib.maintainers; [ kmein ]; maintainers = with maintainers; [ kmein ];
}; };
} }