summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_multiauth/default.nix
blob: 22e32aa4d1eea9eb3f08c0d7a1ec0bcb6b91c088 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
, pyramid
}:

buildPythonPackage rec {
  pname = "pyramid_multiauth";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6d8785558e1d0bbe0d0da43e296efc0fbe0de5071d1f9b1091e891f0e4ec9682";
  };

  propagatedBuildInputs = [ pyramid ];

  meta = with 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;
    maintainers = with maintainers; [];
  };
}