Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / http-ece / default.nix
blob16f8fa23c3284aa452e2899038c4273b69308d7e
1 { lib, fetchPypi, buildPythonPackage, pythonOlder
2 , coverage, flake8, mock, nose, importlib-metadata
3 , cryptography }:
5 buildPythonPackage rec {
6   pname = "http_ece";
7   version = "1.1.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "1y5ln09ji4dwpzhxr77cggk02kghq7lql60a6969a5n2lwpvqblk";
12   };
14   propagatedBuildInputs = [ cryptography ]
15     ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
17   nativeCheckInputs = [ coverage flake8 mock nose ];
19   meta = with lib; {
20     description = "Encipher HTTP Messages";
21     homepage = "https://github.com/martinthomson/encrypted-content-encoding";
22     license = licenses.mit;
23     maintainers = with maintainers; [ peterhoeg ];
24   };