83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
25 lines
467 B
Nix
25 lines
467 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_interface
|
|
, webob
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "repoze.who";
|
|
version = "3.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-6VWt8AwfCwxxXoKJeaI37Ev37nCCe9l/Xhe/gnYNyzA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope_interface webob ];
|
|
|
|
meta = with lib; {
|
|
description = "WSGI Authentication Middleware / API";
|
|
homepage = "http://www.repoze.org";
|
|
license = licenses.bsd0;
|
|
};
|
|
|
|
}
|