about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zeroc-ice/default.nix
blob: 16bf5b7855c57b7bf1c8cb0ea158bd9d454a94d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, openssl, bzip2 }:

buildPythonPackage rec {
  pname = "zeroc-ice";
  version = "3.7.4";

  src = fetchPypi {
    inherit version pname;
    sha256 = "dc79a1eaad1d1cd1cf8cfe636e1bc413c60645e3e87a5a8e9b97ce882690e0e4";
  };

  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 ];
  };
}