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