mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
pythonPackages.pydispatcher: init -> 2.0.5
This commit is contained in:
parent
19eac13f3d
commit
93a9643aed
|
@ -17435,6 +17435,21 @@ in modules // {
|
|||
};
|
||||
});
|
||||
|
||||
pydispatcher = buildPythonPackage (rec {
|
||||
version = "2.0.5";
|
||||
disabled = isPy35;
|
||||
name = "pydispatcher-${version}";
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/P/PyDispatcher/PyDispatcher-${version}.tar.gz";
|
||||
sha256 = "1bswbmhlbqdxlgbxlb6xrlm4k253sg8nvpl1whgsys8p3fg0cw2m";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://pydispatcher.sourceforge.net/;
|
||||
description = "Signal-registration and routing infrastructure for use in multiple contexts";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
});
|
||||
|
||||
pydot = buildPythonPackage rec {
|
||||
name = "pydot-1.0.2";
|
||||
|
|
Loading…
Reference in a new issue