about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pypubsub/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pypubsub/default.nix')
-rw-r--r--pkgs/development/python-modules/pypubsub/default.nix24
1 files changed, 15 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/pypubsub/default.nix b/pkgs/development/python-modules/pypubsub/default.nix
index e883700ca78b..cac77e5cc2cd 100644
--- a/pkgs/development/python-modules/pypubsub/default.nix
+++ b/pkgs/development/python-modules/pypubsub/default.nix
@@ -1,4 +1,10 @@
-{ lib, buildPythonPackage, fetchFromGitHub, isPy27, pytest }:
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  isPy27,
+  pytest,
+}:
 
 buildPythonPackage rec {
   pname = "pypubsub";
@@ -24,14 +30,14 @@ buildPythonPackage rec {
     homepage = "https://github.com/schollii/pypubsub";
     description = "Python 3 publish-subcribe library";
     longDescription = ''
-     Provides a publish-subscribe API to facilitate event-based or
-     message-based  architecture in a single-process application. It is pure
-     Python  and works on Python 3.3+. It is centered on the notion of a topic;
-     senders publish messages of a given topic, and listeners subscribe to
-     messages of a given topic, all inside the same process. The package also
-     supports a variety of advanced features that facilitate debugging and
-     maintaining topics and messages in larger desktop- or server-based
-     applications.
+      Provides a publish-subscribe API to facilitate event-based or
+      message-based  architecture in a single-process application. It is pure
+      Python  and works on Python 3.3+. It is centered on the notion of a topic;
+      senders publish messages of a given topic, and listeners subscribe to
+      messages of a given topic, all inside the same process. The package also
+      supports a variety of advanced features that facilitate debugging and
+      maintaining topics and messages in larger desktop- or server-based
+      applications.
     '';
     license = licenses.bsd2;
     maintainers = with maintainers; [ tfmoraes ];