pythonPackages.obfsproxy: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
c24d25276f
commit
da78a13ad1
@@ -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 { };
|
oauthlib = callPackage ../development/python-modules/oauthlib { };
|
||||||
|
|
||||||
obfsproxy = buildPythonPackage ( rec {
|
obfsproxy = callPackage ../development/python-modules/obfsproxy { };
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
objgraph = buildPythonPackage rec {
|
objgraph = buildPythonPackage rec {
|
||||||
name = "objgraph-${version}";
|
name = "objgraph-${version}";
|
||||||
|
|||||||
Reference in New Issue
Block a user