about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyro/default.nix
blob: 3e2f90aa9d30073ce5fa9904e5bcec5253e1e1e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, buildPythonPackage, isPy3k }:

buildPythonPackage rec {
  pname = "Pyro";
  version = "3.16";
  name = pname + "-" + version;

  disabled = isPy3k;

  src = fetchurl {
    url = "mirror://pypi/P/Pyro/${name}.tar.gz";
    sha256 = "1bed508453ef7a7556b51424a58101af2349b662baab7e7331c5cb85dbe7e578";
  };

  meta = with stdenv.lib; {
    description = "Distributed object middleware for Python (IPC/RPC)";
    homepage = http://pythonhosted.org/Pyro/;
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ bjornfor ];
  };
}