1{ stdenv, buildPythonPackage, fetchPypi, openssl, bzip2 }:
2
3buildPythonPackage rec {
4 pname = "zeroc-ice";
5 version = "3.7.2";
6
7 src = fetchPypi {
8 inherit version pname;
9 sha256 = "1bs7h3k9nd1gls2azgp8gz9407cslxbi2x1gspab8p87a61pjim8";
10 };
11
12 buildInputs = [ openssl bzip2 ];
13
14 meta = with stdenv.lib; {
15 homepage = https://zeroc.com/;
16 license = licenses.gpl2;
17 description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more.";
18 maintainers = with maintainers; [ abbradar ];
19 };
20}