mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
21 lines
549 B
Nix
21 lines
549 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi, openssl, bzip2 }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "zeroc-ice";
|
||
|
version = "3.7.2";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit version pname;
|
||
|
sha256 = "1bs7h3k9nd1gls2azgp8gz9407cslxbi2x1gspab8p87a61pjim8";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ openssl bzip2 ];
|
||
|
|
||
|
meta = with stdenv.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 ];
|
||
|
};
|
||
|
}
|