nixpkgs/pkgs/development/python-modules/events/default.nix

18 lines
418 B
Nix
Raw Normal View History

2018-07-14 11:37:33 +00:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "Events";
2020-11-29 14:04:27 +00:00
version = "0.4";
2018-07-14 11:37:33 +00:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:27 +00:00
sha256 = "01d9dd2a061f908d74a89fa5c8f07baa694f02a2a5974983663faaf7a97180f5";
2018-07-14 11:37:33 +00:00
};
meta = with lib; {
homepage = "https://events.readthedocs.org";
2018-07-14 11:37:33 +00:00
description = "Bringing the elegance of C# EventHanlder to Python";
license = licenses.bsd3;
};
}