1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "Events";
5 version = "0.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "01d9dd2a061f908d74a89fa5c8f07baa694f02a2a5974983663faaf7a97180f5";
10 };
11
12 meta = with lib; {
13 homepage = "https://events.readthedocs.org";
14 description = "Bringing the elegance of C# EventHanlder to Python";
15 license = licenses.bsd3;
16 };
17}