depot/third_party/nixpkgs/pkgs/development/python-modules/pyramid_multiauth/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
546 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pyramid
}:
buildPythonPackage rec {
pname = "pyramid_multiauth";
version = "0.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "0lprqjyg3zcji6033p1l3s4nigjigc5423wgivkfhz46vq0jmniy";
};
propagatedBuildInputs = [ pyramid ];
meta = with stdenv.lib; {
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;
};
}