python3Packages.http-ece: init at 1.1.0
This commit is contained in:
parent
b6c3bad619
commit
0b90dd7822
24
pkgs/development/python-modules/http-ece/default.nix
Normal file
24
pkgs/development/python-modules/http-ece/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -481,6 +481,8 @@ in {
|
|||||||
|
|
||||||
hopcroftkarp = callPackage ../development/python-modules/hopcroftkarp { };
|
hopcroftkarp = callPackage ../development/python-modules/hopcroftkarp { };
|
||||||
|
|
||||||
|
http-ece = callPackage ../development/python-modules/http-ece { };
|
||||||
|
|
||||||
httpsig = callPackage ../development/python-modules/httpsig { };
|
httpsig = callPackage ../development/python-modules/httpsig { };
|
||||||
|
|
||||||
httptools = callPackage ../development/python-modules/httptools { };
|
httptools = callPackage ../development/python-modules/httptools { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user