5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
30 lines
608 B
Nix
30 lines
608 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mohawk,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "requests-hawk";
|
|
version = "1.2.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-rZIFBCyUvbFa+qGbB4DhEHeyTZ5c/6wfs9JssIqkNbc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mohawk
|
|
requests
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Hawk authentication strategy for the requests python library";
|
|
homepage = "https://github.com/mozilla-services/requests-hawk";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ austinbutler ];
|
|
};
|
|
}
|