3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.http-ece: init at 1.1.0

This commit is contained in:
Peter Hoeg 2019-06-07 11:22:22 +08:00
parent b6c3bad619
commit 0b90dd7822
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchPypi, buildPythonPackage
, coverage, flake8, mock, nose
, cryptography }:
buildPythonPackage rec {
pname = "http_ece";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1y5ln09ji4dwpzhxr77cggk02kghq7lql60a6969a5n2lwpvqblk";
};
propagatedBuildInputs = [ cryptography ];
checkInputs = [ coverage flake8 mock nose ];
meta = with lib; {
description = "Encipher HTTP Messages";
homepage = https://github.com/martinthomson/encrypted-content-encoding;
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}

View file

@ -481,6 +481,8 @@ in {
hopcroftkarp = callPackage ../development/python-modules/hopcroftkarp { };
http-ece = callPackage ../development/python-modules/http-ece { };
httpsig = callPackage ../development/python-modules/httpsig { };
httptools = callPackage ../development/python-modules/httptools { };