ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / hawkauthlib / default.nix
blob7afb4eefa060ebb6774e166e352b095d7bf291d9
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 , webob
6 }:
8 buildPythonPackage rec {
9   pname = "hawkauthlib";
10   version = "0.1.1";
12   src = fetchFromGitHub {
13     owner = "mozilla-services";
14     repo = pname;
15     rev = "refs/tags/v${version}";
16     sha256 = "0mr1mpx4j9q7sch9arwfvpysnpf2p7ijy7072wilxm8pnj0bwvsi";
17   };
19   propagatedBuildInputs = [ requests webob ];
21   meta = with lib; {
22     homepage = "https://github.com/mozilla-services/hawkauthlib";
23     description = "Hawk Access Authentication protocol";
24     license = licenses.mpl20;
25   };