1{ lib
2, buildPythonPackage
3, fetchPypi
4, pyramid
5}:
6
7buildPythonPackage rec {
8 pname = "pyramid_multiauth";
9 version = "1.0.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "6d8785558e1d0bbe0d0da43e296efc0fbe0de5071d1f9b1091e891f0e4ec9682";
14 };
15
16 propagatedBuildInputs = [ pyramid ];
17
18 meta = with lib; {
19 description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies";
20 homepage = "https://github.com/mozilla-services/pyramid_multiauth";
21 license = licenses.mpl20;
22 maintainers = with maintainers; [];
23 };
24}