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