2018-10-16 17:27:47 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pyramid
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyramid_multiauth";
|
2018-10-24 12:36:53 +02:00
|
|
|
version = "0.9.0";
|
2018-10-16 17:27:47 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 12:36:53 +02:00
|
|
|
sha256 = "0lprqjyg3zcji6033p1l3s4nigjigc5423wgivkfhz46vq0jmniy";
|
2018-10-16 17:27:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyramid ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mozilla-services/pyramid_multiauth";
|
2018-10-16 17:27:47 +02:00
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|