about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zeroc-ice/default.nix
blob: ccc34b42afb49298c6f0c23e8b3219bb9a4d0ea7 (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.3";

  src = fetchPypi {
    inherit version pname;
    sha256 = "1adec3b54c77c46acfc8a99d6336ce9a0223a7016852666358133cbe37d99744";
  };

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