nixpkgs/pkgs/development/python-modules/zeroc-ice/default.nix
2023-03-25 20:14:00 +00:00

24 lines
611 B
Nix

{ stdenv, lib, buildPythonPackage, fetchPypi, openssl, bzip2 }:
buildPythonPackage rec {
pname = "zeroc-ice";
version = "3.7.9";
src = fetchPypi {
inherit version pname;
hash = "sha256-q994axJexRU1SUlg9P71NvaZRpR9dj46GX85cbvMEy8=";
};
buildInputs = [ openssl bzip2 ];
pythonImportsCheck = [ "Ice" ];
meta = with lib; {
broken = stdenv.isDarwin;
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 ];
};
}