My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/socksipy-branch/default.nix

21 lines
484 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "SocksiPy-branch";
version = "1.01";
src = fetchPypi {
inherit pname version;
sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p";
};
meta = with 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;
};
}