doh-proxy: init at 0.0.8

This commit is contained in:
Alyssa Ross 2018-10-26 14:31:35 +00:00
parent 1f1bd5c8e8
commit 39edfe5a2d
No known key found for this signature in database
GPG Key ID: C4844408C0657052
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "doh-proxy";
version = "0.0.8";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0mfl84mcklby6cnsw29kpcxj7mh1cx5yw6mjs4sidr1psyni7x6c";
};
propagatedBuildInputs = with python3Packages;
[ aioh2 dnspython aiohttp-remotes pytestrunner flake8 ];
doCheck = false; # Trouble packaging unittest-data-provider
meta = with lib; {
homepage = https://facebookexperimental.github.io/doh-proxy/;
description = "A proof of concept DNS-Over-HTTPS proxy";
license = licenses.bsd3;
maintainers = [ maintainers.qyliss ];
};
}

View File

@ -13208,6 +13208,8 @@ with pkgs;
dex-oidc = callPackage ../servers/dex { };
doh-proxy = callPackage ../servers/dns/doh-proxy { };
dgraph = callPackage ../servers/dgraph { };
dico = callPackage ../servers/dico { };