1{ lib, fetchPypi, buildPythonPackage
2, coverage, flake8, mock, nose
3, cryptography }:
4
5buildPythonPackage rec {
6 pname = "http_ece";
7 version = "1.1.0";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "1y5ln09ji4dwpzhxr77cggk02kghq7lql60a6969a5n2lwpvqblk";
12 };
13
14 propagatedBuildInputs = [ cryptography ];
15
16 checkInputs = [ coverage flake8 mock nose ];
17
18 meta = with lib; {
19 description = "Encipher HTTP Messages";
20 homepage = https://github.com/martinthomson/encrypted-content-encoding;
21 license = licenses.mit;
22 maintainers = with maintainers; [ peterhoeg ];
23 };
24}