summary refs log blame commit diff
path: root/pkgs/development/python-modules/pydispatcher/default.nix
blob: 68772cab30681c2842ed1fa7e0578de3580d065b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                    
                           











                                                                                                
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  version = "2.0.5";
  pname = "pydispatcher";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bswbmhlbqdxlgbxlb6xrlm4k253sg8nvpl1whgsys8p3fg0cw2m";
  };

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test
  '';

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

}