nixpkgs/pkgs/development/python-modules/zeroc-ice/default.nix

21 lines
563 B
Nix
Raw Normal View History

2019-09-06 18:10:23 +02:00
{ stdenv, buildPythonPackage, fetchPypi, openssl, bzip2 }:
buildPythonPackage rec {
pname = "zeroc-ice";
2020-06-05 19:44:38 +02:00
version = "3.7.4";
2019-09-06 18:10:23 +02:00
src = fetchPypi {
inherit version pname;
2020-06-05 19:44:38 +02:00
sha256 = "dc79a1eaad1d1cd1cf8cfe636e1bc413c60645e3e87a5a8e9b97ce882690e0e4";
2019-09-06 18:10:23 +02:00
};
buildInputs = [ openssl bzip2 ];
meta = with stdenv.lib; {
homepage = "https://zeroc.com/";
2019-09-06 18:10:23 +02:00
license = licenses.gpl2;
description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more.";
maintainers = with maintainers; [ abbradar ];
};
}