forked from mirrors/nixpkgs
pythonPackages.obfsproxy: refactor move to python-modules
This commit is contained in:
parent
c24d25276f
commit
da78a13ad1
pkgs
38
pkgs/development/python-modules/obfsproxy/default.nix
Normal file
38
pkgs/development/python-modules/obfsproxy/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchgit
|
||||
, pyptlib
|
||||
, argparse
|
||||
, twisted
|
||||
, pycrypto
|
||||
, pyyaml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "obfsproxy";
|
||||
version = "0.2.13";
|
||||
|
||||
src = fetchgit {
|
||||
url = meta.repositories.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 argparse twisted pycrypto pyyaml ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A pluggable transport proxy";
|
||||
homepage = https://www.torproject.org/projects/obfsproxy;
|
||||
repositories.git = https://git.torproject.org/pluggable-transports/obfsproxy.git;
|
||||
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
||||
};
|
||||
|
||||
}
|
|
@ -2984,34 +2984,7 @@ in {
|
|||
|
||||
oauthlib = callPackage ../development/python-modules/oauthlib { };
|
||||
|
||||
obfsproxy = buildPythonPackage ( rec {
|
||||
name = "obfsproxy-${version}";
|
||||
version = "0.2.13";
|
||||
|
||||
src = pkgs.fetchgit {
|
||||
url = meta.repositories.git;
|
||||
rev = "refs/tags/${name}";
|
||||
sha256 = "04ja1cl8xzqnwrd2gi6nlnxbmjri141bzwa5gybvr44d8h3k2nfa";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace "version=versioneer.get_version()" "version='${version}'"
|
||||
substituteInPlace setup.py --replace "argparse" ""
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with self;
|
||||
[ pyptlib argparse twisted pycrypto pyyaml ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A pluggable transport proxy";
|
||||
homepage = https://www.torproject.org/projects/obfsproxy;
|
||||
repositories.git = https://git.torproject.org/pluggable-transports/obfsproxy.git;
|
||||
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
||||
};
|
||||
});
|
||||
obfsproxy = callPackage ../development/python-modules/obfsproxy { };
|
||||
|
||||
objgraph = buildPythonPackage rec {
|
||||
name = "objgraph-${version}";
|
||||
|
|
Loading…
Reference in a new issue