pythonPackages.repoze_who: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-25 22:08:54 -04:00
committed by Frederik Rietdijk
parent fc46fb16c1
commit 41a0ab047d
2 changed files with 26 additions and 21 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_interface
, webob
}:
buildPythonPackage rec {
pname = "repoze.who";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "12wsviar45nwn35w2y4i8b929dq2219vmwz8013wx7bpgkn2j9ij";
};
propagatedBuildInputs = [ zope_interface webob ];
meta = with stdenv.lib; {
description = "WSGI Authentication Middleware / API";
homepage = "http://www.repoze.org";
license = licenses.bsd0;
};
}