blob: 69e5e41d427e802612ae33a1b3d26f7774f47309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pyramid,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pyramid-multiauth";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "mozilla-services";
repo = "pyramid_multiauth";
tag = version;
hash = "sha256-Bz53iCGsl6WZASIvBQ1pFfcGLra82vA2OLWjhLVdkrw=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ pyramid ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
changelog = "https://github.com/mozilla-services/pyramid_multiauth/releases/tag/${version}";
description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies";
homepage = "https://github.com/mozilla-services/pyramid_multiauth";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
};
}
|