Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 25 lines 490 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5, webob 6}: 7 8buildPythonPackage rec { 9 pname = "repoze.who"; 10 version = "2.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "b95dadc1242acc55950115a629cfb1352669774b46d22def51400ca683efea28"; 15 }; 16 17 propagatedBuildInputs = [ zope_interface webob ]; 18 19 meta = with stdenv.lib; { 20 description = "WSGI Authentication Middleware / API"; 21 homepage = "http://www.repoze.org"; 22 license = licenses.bsd0; 23 }; 24 25}