1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pyramid
5}:
6
7buildPythonPackage rec {
8 pname = "pyramid_multiauth";
9 version = "0.9.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0lprqjyg3zcji6033p1l3s4nigjigc5423wgivkfhz46vq0jmniy";
14 };
15
16 propagatedBuildInputs = [ pyramid ];
17
18 meta = with stdenv.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 };
23
24}