nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 23 lines 626 B view raw
1{ stdenv, lib, buildPythonPackage, fetchPypi, openssl, bzip2 }: 2 3buildPythonPackage rec { 4 pname = "zeroc-ice"; 5 version = "3.7.7"; 6 7 src = fetchPypi { 8 inherit version pname; 9 sha256 = "415f4a673009fe9a5ef67b61c4469ddf14b73857b6d40f02d6b74f02ad935147"; 10 }; 11 12 buildInputs = [ openssl bzip2 ]; 13 14 pythonImportsCheck = [ "Ice" ]; 15 16 meta = with lib; { 17 broken = stdenv.isDarwin; 18 homepage = "https://zeroc.com/"; 19 license = licenses.gpl2; 20 description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more."; 21 maintainers = with maintainers; [ abbradar ]; 22 }; 23}