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