2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pyramid
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyramid_multiauth";
|
|
|
|
version = "0.9.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0lprqjyg3zcji6033p1l3s4nigjigc5423wgivkfhz46vq0jmniy";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyramid ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies";
|
|
|
|
homepage = "https://github.com/mozilla-services/pyramid_multiauth";
|
|
|
|
license = licenses.mpl20;
|
2021-02-17 17:02:09 +00:00
|
|
|
maintainers = with maintainers; [];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|