about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pydispatcher/default.nix
blob: 0d4ef3ce3f5e6a53aad02b8e1693a9e88683d01d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  version = "2.0.7";
  format = "setuptools";
  pname = "pydispatcher";

  src = fetchPypi {
    pname = "PyDispatcher";
    inherit version;
    hash = "sha256-t3fGrQgNwbrXSkwp1qRpFPpnAaxw+UsNZvvP3mL1vjE=";
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  meta = with lib; {
    homepage = "https://pydispatcher.sourceforge.net/";
    description = "Signal-registration and routing infrastructure for use in multiple contexts";
    license = licenses.bsd3;
  };

}