summary refs log tree commit diff
path: root/pkgs/development/python-modules/socksipy-branch/default.nix
blob: e17f38cb50dd6a37cf6a0542246238e3c1e8447c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "SocksiPy-branch";
  version = "1.01";

  src = fetchPypi {
    inherit pname version;
    sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p";
  };

  meta = with stdenv.lib; {
    homepage = "http://code.google.com/p/socksipy-branch/";
    description = "This Python module allows you to create TCP connections through a SOCKS proxy without any special effort";
    license = licenses.bsd3;
  };

}