Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 563 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, openssl, bzip2 }: 2 3buildPythonPackage rec { 4 pname = "zeroc-ice"; 5 version = "3.7.4"; 6 7 src = fetchPypi { 8 inherit version pname; 9 sha256 = "dc79a1eaad1d1cd1cf8cfe636e1bc413c60645e3e87a5a8e9b97ce882690e0e4"; 10 }; 11 12 buildInputs = [ openssl bzip2 ]; 13 14 meta = with stdenv.lib; { 15 homepage = "https://zeroc.com/"; 16 license = licenses.gpl2; 17 description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more."; 18 maintainers = with maintainers; [ abbradar ]; 19 }; 20}