depot/third_party/nixpkgs/pkgs/development/python-modules/http-ece/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
600 B
Nix

{ 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 ];
};
}