summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pydispatcher/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pydispatcher/default.nix')
-rw-r--r--pkgs/development/python-modules/pydispatcher/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/pydispatcher/default.nix b/pkgs/development/python-modules/pydispatcher/default.nix
index 0d4ef3ce3f5e..7094534c1563 100644
--- a/pkgs/development/python-modules/pydispatcher/default.nix
+++ b/pkgs/development/python-modules/pydispatcher/default.nix
@@ -1,7 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -15,14 +16,11 @@ buildPythonPackage rec {
hash = "sha256-t3fGrQgNwbrXSkwp1qRpFPpnAaxw+UsNZvvP3mL1vjE=";
};
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://pydispatcher.sourceforge.net/";
description = "Signal-registration and routing infrastructure for use in multiple contexts";
license = licenses.bsd3;
};
-
}