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/obfsproxy/default.nix

36 lines
848 B

{ lib
, buildPythonPackage
, fetchgit
, pyptlib
, twisted
, pycrypto
, pyyaml
}:
buildPythonPackage rec {
pname = "obfsproxy";
version = "0.2.13";
src = fetchgit {
url = "https://git.torproject.org/pluggable-transports/obfsproxy.git";
rev = "refs/tags/${pname}-${version}";
sha256 = "04ja1cl8xzqnwrd2gi6nlnxbmjri141bzwa5gybvr44d8h3k2nfa";
};
postPatch = ''
substituteInPlace setup.py --replace "version=versioneer.get_version()" "version='${version}'"
substituteInPlace setup.py --replace "argparse" ""
'';
propagatedBuildInputs = [ pyptlib twisted pycrypto pyyaml ];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "A pluggable transport proxy";
homepage = "https://www.torproject.org/projects/obfsproxy";
maintainers = with maintainers; [ thoughtpolice ];
};
}