depot/third_party/nixpkgs/pkgs/development/python-modules/requests-hawk/default.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

20 lines
586 B
Nix

{ lib, buildPythonPackage, fetchPypi, python, mohawk, requests }:
buildPythonPackage rec {
pname = "requests-hawk";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "4c74bd31b581f6d2b36d575bb537b1f29469509f560f5050339a48195d48929b";
};
propagatedBuildInputs = [ mohawk requests ];
meta = with lib; {
description = "Hawk authentication strategy for the requests python library.";
homepage = "https://github.com/mozilla-services/requests-hawk";
license = licenses.asl20;
maintainers = with maintainers; [ austinbutler ];
};
}