pythonPackages.Pyro: move to python-modules/
This commit is contained in:
parent
afd4a17ee5
commit
6de28d760a
|
@ -0,0 +1,19 @@
|
||||||
|
{ stdenv, fetchurl, buildPythonPackage, isPy3k }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "Pyro-3.16";
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -16818,23 +16818,7 @@ in {
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
Pyro = buildPythonPackage (rec {
|
Pyro = callPackage ../development/python-modules/pyro { };
|
||||||
name = "Pyro-3.16";
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/P/Pyro/${name}.tar.gz";
|
|
||||||
sha256 = "1bed508453ef7a7556b51424a58101af2349b662baab7e7331c5cb85dbe7e578";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Distributed object middleware for Python (IPC/RPC)";
|
|
||||||
homepage = http://pythonhosted.org/Pyro/;
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ bjornfor ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
pyrsistent = buildPythonPackage (rec {
|
pyrsistent = buildPythonPackage (rec {
|
||||||
name = "pyrsistent-0.11.12";
|
name = "pyrsistent-0.11.12";
|
||||||
|
|
Loading…
Reference in New Issue