Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / socksipy-branch / default.nix
blobabfee3718b53ac7955b092509508f844adc57ab7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "SocksiPy-branch";
8   version = "1.01";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p";
13   };
15   meta = with lib; {
16     homepage = "http://code.google.com/p/socksipy-branch/";
17     description = "This Python module allows you to create TCP connections through a SOCKS proxy without any special effort";
18     license = licenses.bsd3;
19   };