Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 22 lines 513 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "socksipy-branch"; 9 version = "1.01"; 10 11 src = fetchPypi { 12 pname = "SocksiPy-branch"; 13 inherit version; 14 sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"; 15 }; 16 17 meta = with lib; { 18 homepage = "http://code.google.com/p/socksipy-branch/"; 19 description = "This Python module allows you to create TCP connections through a SOCKS proxy without any special effort"; 20 license = licenses.bsd3; 21 }; 22}