summary refs log tree commit diff
path: root/pkgs/development/python-modules/http-ece/default.nix
blob: 1f50608d3d1b46aeff2d5d255dbfe0629934ac16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}