depot/third_party/nixpkgs/pkgs/development/python-modules/pydispatcher/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

28 lines
531 B
Nix

{ lib, 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 lib; {
homepage = "http://pydispatcher.sourceforge.net/";
description = "Signal-registration and routing infrastructure for use in multiple contexts";
license = licenses.bsd3;
};
}