ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / requests-hawk / default.nix
blob52790b5f2cc9ed033185c1819885af76d8e9edbe
1 { lib, buildPythonPackage, fetchPypi, python, mohawk, requests }:
3 buildPythonPackage rec {
4   pname = "requests-hawk";
5   version = "1.1.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "4c74bd31b581f6d2b36d575bb537b1f29469509f560f5050339a48195d48929b";
10   };
12   propagatedBuildInputs = [ mohawk requests ];
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   };