1{ stdenv, fetchurl, buildPythonPackage, isPy3k }:
2
3buildPythonPackage rec {
4 pname = "Pyro";
5 version = "3.16";
6 name = pname + "-" + version;
7
8 disabled = isPy3k;
9
10 src = fetchurl {
11 url = "mirror://pypi/P/Pyro/${name}.tar.gz";
12 sha256 = "1bed508453ef7a7556b51424a58101af2349b662baab7e7331c5cb85dbe7e578";
13 };
14
15 meta = with stdenv.lib; {
16 description = "Distributed object middleware for Python (IPC/RPC)";
17 homepage = http://pythonhosted.org/Pyro/;
18 license = licenses.mit;
19 platforms = platforms.unix;
20 maintainers = with maintainers; [ bjornfor ];
21 };
22}