39 lines
766 B
Nix
39 lines
766 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
bzip2,
|
|
openssl,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zeroc-ice";
|
|
version = "3.7.10.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "zeroc_ice";
|
|
inherit version;
|
|
hash = "sha256-sGOq/aNg33EfdpRVKbtUFXbyZr5B5dWi3Xf10yDBhmQ=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
openssl
|
|
];
|
|
|
|
pythonImportsCheck = [ "Ice" ];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
homepage = "https://zeroc.com/";
|
|
license = licenses.gpl2;
|
|
description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more";
|
|
mainProgram = "slice2py";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|