My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/events/default.nix

17 lines
418 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "Events";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "01d9dd2a061f908d74a89fa5c8f07baa694f02a2a5974983663faaf7a97180f5";
};
meta = with lib; {
homepage = "https://events.readthedocs.org";
description = "Bringing the elegance of C# EventHanlder to Python";
license = licenses.bsd3;
};
}