Files
nixpkgs/pkgs/development/python-modules/pyee/default.nix
2025-08-09 19:05:06 +02:00

54 lines
924 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
mock,
pytest-asyncio_0,
pytest-trio,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
twisted,
typing-extensions,
wheel,
}:
buildPythonPackage rec {
pname = "pyee";
version = "13.0.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-s5HjxaQ00fURiiVhUAHbyPZpz0EKtn0ExNTgfFVIHDc=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ typing-extensions ];
nativeCheckInputs = [
mock
pytest-asyncio_0
pytest-trio
pytestCheckHook
twisted
];
pythonImportsCheck = [ "pyee" ];
meta = with lib; {
description = "Port of Node.js's EventEmitter to Python";
homepage = "https://github.com/jfhbrook/pyee";
license = licenses.mit;
maintainers = with maintainers; [ kmein ];
};
}