depot/third_party/nixpkgs/pkgs/development/python-modules/requests-hawk/default.nix
Default email 1693fb2285 Project import generated by Copybara.
GitOrigin-RevId: 420f89ceb267b461eed5d025b6c3c0e57703cc5c
2020-10-07 11:15:18 +02:00

20 lines
572 B
Nix

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