1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 mohawk,
6 requests,
7}:
8
9buildPythonPackage rec {
10 pname = "requests-hawk";
11 version = "1.2.1";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-rZIFBCyUvbFa+qGbB4DhEHeyTZ5c/6wfs9JssIqkNbc=";
17 };
18
19 propagatedBuildInputs = [
20 mohawk
21 requests
22 ];
23
24 meta = with lib; {
25 description = "Hawk authentication strategy for the requests python library";
26 homepage = "https://github.com/mozilla-services/requests-hawk";
27 license = licenses.asl20;
28 maintainers = with maintainers; [ austinbutler ];
29 };
30}