ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyramid_hawkauth / default.nix
blob4a21f6771ef74b6d0e33caf0ff36b05af3d93759
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pyramid
6 , hawkauthlib
7 , tokenlib
8 , webtest
9 }:
11 buildPythonPackage rec {
12   pname = "pyramid_hawkauth";
13   version = "0.1.0";
15   src = fetchFromGitHub {
16     owner = "mozilla-services";
17     repo = pname;
18     rev = "refs/tags/v${version}";
19     sha256 = "038ign7qlavlmvrhb2y8bygbxvy4j7bx2k1zg0i3wblg2ja50w7h";
20   };
22   propagatedBuildInputs = [ pyramid hawkauthlib tokenlib ];
23   buildInputs = [ webtest ];
25   pythonImportsCheck = [ "pyramid_hawkauth" ];
27   meta = with lib; {
28     broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
29     homepage = "https://github.com/mozilla-services/pyramid_hawkauth";
30     description = "A Pyramid authentication plugin for HAWK";
31     license = licenses.mpl20;
32     maintainers = with maintainers; [ ];
33   };