pythonPackages.requests-hawk: init at 1.0.1

This commit is contained in:
Austin Butler 2020-09-26 14:06:05 -07:00 committed by Jon
parent 2bdce0e50c
commit 3b1ee7b011
2 changed files with 22 additions and 0 deletions

@ -0,0 +1,20 @@
{ 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 ];
};
}

@ -6077,6 +6077,8 @@ in {
requests-cache = callPackage ../development/python-modules/requests-cache { };
requests-hawk = callPackage ../development/python-modules/requests-hawk { };
requests = callPackage ../development/python-modules/requests { };
requests_download = callPackage ../development/python-modules/requests_download { };