30 lines
650 B
Nix
30 lines
650 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchgit
|
|
, pyramid
|
|
, hawkauthlib
|
|
, tokenlib
|
|
, webtest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyramidhawkauth";
|
|
version = "0.1.0";
|
|
|
|
src = fetchgit {
|
|
url = https://github.com/mozilla-services/pyramid_hawkauth.git;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "038ign7qlavlmvrhb2y8bygbxvy4j7bx2k1zg0i3wblg2ja50w7h";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyramid hawkauthlib tokenlib ];
|
|
buildInputs = [ webtest ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/mozilla-services/pyramid_hawkauth;
|
|
description = "A Pyramid authentication plugin for HAWK";
|
|
license = licenses.mpl20;
|
|
};
|
|
|
|
}
|