Files
nixpkgs/pkgs/development/python-modules/zeroc-ice/default.nix
phaer 978931902c maintainers: drop abbradar
Listed as maintainer for ~170 packages but last commit that made it to
master was 6786ceb in February 2022.

Unresponsive on PRs, such as i.e. #411522
2025-08-22 09:49:27 +02:00

38 lines
686 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
bzip2,
openssl,
}:
buildPythonPackage rec {
pname = "zeroc-ice";
version = "3.7.10.1";
pyproject = true;
src = fetchPypi {
pname = "zeroc_ice";
inherit version;
hash = "sha256-sGOq/aNg33EfdpRVKbtUFXbyZr5B5dWi3Xf10yDBhmQ=";
};
build-system = [ setuptools ];
buildInputs = [
bzip2
openssl
];
pythonImportsCheck = [ "Ice" ];
meta = with lib; {
homepage = "https://zeroc.com/";
license = licenses.gpl2;
description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more";
mainProgram = "slice2py";
maintainers = [ ];
};
}