22 lines
588 B
Nix
22 lines
588 B
Nix
{ lib, buildPythonPackage, fetchPypi, openssl, bzip2 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zeroc-ice";
|
|
version = "3.7.7";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "415f4a673009fe9a5ef67b61c4469ddf14b73857b6d40f02d6b74f02ad935147";
|
|
};
|
|
|
|
buildInputs = [ openssl bzip2 ];
|
|
|
|
pythonImportsCheck = [ "Ice" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://zeroc.com/";
|
|
license = licenses.gpl2;
|
|
description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more.";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|