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