summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyee/default.nix
blob: 712db3e87123ef18ef776c7bca1f721b3532f21f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ buildPythonPackage, fetchPypi, lib, vcversioner, pytestrunner, mock, pytest, pytest-asyncio, pytest-trio, twisted, zipp, pyparsing, pyhamcrest, futures, attrs, stdenv, isPy27 }:

buildPythonPackage rec {
  pname = "pyee";
  version = "8.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "92dacc5bd2bdb8f95aa8dd2585d47ca1c4840e2adb95ccf90034d64f725bfd31";
  };

  buildInputs = [
    vcversioner
  ];

  checkInputs = [
    mock
    pyhamcrest
    pytest
    pytest-asyncio
    pytest-trio
    pytestrunner
    twisted
  ] ++ lib.optional isPy27 [
    attrs
    futures
    pyparsing
    zipp
  ];

  meta = {
    description = "A port of Node.js's EventEmitter to python";
    homepage = "https://github.com/jfhbrook/pyee";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ kmein ];
  };
}