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