python.pkgs.events: 0.2.1 -> 0.3

This commit is contained in:
Robert Schütz
2018-07-14 13:37:33 +02:00
parent 013ba39557
commit 3575e894b2
2 changed files with 18 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "Events";
version = "0.3";
src = fetchPypi {
inherit pname version;
sha256 = "f4d9c41a5c160ce504278f219fe56f44242ca63794a0ad638b52d1e087ac2a41";
};
meta = with lib; {
homepage = http://events.readthedocs.org;
description = "Bringing the elegance of C# EventHanlder to Python";
license = licenses.bsd3;
};
}