Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pyramid_multiauth / default.nix
blob859d4c3b43392b3522aa671a4457f1009078a942
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyramid
5 }:
7 buildPythonPackage rec {
8   pname = "pyramid_multiauth";
9   version = "0.9.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0lprqjyg3zcji6033p1l3s4nigjigc5423wgivkfhz46vq0jmniy";
14   };
16   propagatedBuildInputs = [ pyramid ];
18   meta = with 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     maintainers = with maintainers; [];
23   };